阅读量:0
在 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
函数的情况下,轻松地添加新的形状类并计算它们的面积。这实现了代码的解耦和复用。