在 PHP 中,多态是面向对象编程(OOP)的一个重要特性,它允许我们使用父类或接口作为参数类型,然后在运行时动态地确定实际的子类或实现类。这种方法有助于实现代码的解耦和复用。
以下是通过 PHP 多态实现代码解耦和复用的步骤:
interface Shape {
public function area();
}
class Circle implements Shape {
private $radius;
public function __construct($radius) {
$this->radius = $radius;
}
public function area() {
return pi() * pow($this->radius, 2);
}
}
class Rectangle implements Shape {
private $width;
private $height;
public function __construct($width, $height) {
$this->width = $width;
$this->height = $height;
}
public function area() {
return $this->width * $this->height;
}
}
function calculateArea(Shape $shape) {
return $shape->area();
}
$circle = new Circle(5);
$rectangle = new Rectangle(4, 6);
echo "Circle area: " . calculateArea($circle) . PHP_EOL;
echo "Rectangle area: " . calculateArea($rectangle) . PHP_EOL;
通过这种方式,我们可以在不修改 calculateArea
函数的情况下,轻松地添加新的形状类并计算它们的面积。这实现了代码的解耦和复用。