您好,登錄后才能下訂單哦!
在PHP項目中實現多態性設計可以通過使用接口和抽象類來實現。以下是實現多態性設計的步驟:
interface Shape {
public function getArea();
}
class Circle implements Shape {
private $radius;
public function __construct($radius) {
$this->radius = $radius;
}
public function getArea() {
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 getArea() {
return $this->width * $this->height;
}
}
$circle = new Circle(5);
$rectangle = new Rectangle(4, 6);
$shapes = [$circle, $rectangle];
foreach ($shapes as $shape) {
echo get_class($shape) . " Area: " . $shape->getArea() . "\n";
}
這樣可以在不同的對象中調用相同的方法,實現多態性設計。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。