在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。