大型代码库中,函数模块化和复用至关重要,遵循单一职责、高内聚低耦合和松散耦合原则。模块化策略包括函数抽取、参数化函数和高阶函数。复用策略包括根据形状类型计算面积的通用函数 calcArea(),通过 Shape 接口和 Circle/Rectangle 类实现多态,降低代码重复。
在大型代码库中,函数的模块化和复用至关重要。模块化的函数便于维护、增强代码的可读性和可重用性,从而提高开发效率和代码质量。
原始代码:
// 计算圆的面积 public double calcCircleArea(double radius) { return Math.PI * radius * radius; } // 计算矩形的面积 public double calcRectangleArea(double width, double height) { return width * height; }
模块化后的代码:
// 定义一个计算面积的通用函数 public double calcArea(Shape shape) { return switch (shape.getType()) { case CIRCLE -> Math.PI * shape.getRadius() * shape.getRadius(); case RECTANGLE -> shape.getWidth() * shape.getHeight(); default -> throw new IllegalArgumentException("Unknown shape type"); }; } // Shape 接口定义了形状类型的常量 public interface Shape { enum Type { CIRCLE, RECTANGLE } Type getType(); double getRadius(); double getWidth(); double getHeight(); } // Circle 和 Rectangle 类实现 Shape 接口 public class Circle implements Shape { private double radius; public Circle(double radius) { this.radius = radius; } @Override public Type getType() { return Type.CIRCLE; } @Override public double getRadius() { return radius; } } public class Rectangle implements Shape { private double width; private double height; public Rectangle(double width, double height) { this.width = width; this.height = height; } @Override public Type getType() { return Type.RECTANGLE; } @Override public double getWidth() { return width; } @Override public double getHeight() { return height; } }
通过模块化,代码职责明确,复用性强。通用函数 calcArea()
根据传入的形状类型计算面积,无需重复类似的计算逻辑。
Das obige ist der detaillierte Inhalt vonBest Practices für die Modularisierung und Wiederverwendung von Funktionen in großen Codebasen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!