在 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
函數的情況下,輕松地添加新的形狀類并計算它們的面積。這實現了代碼的解耦和復用。