PHP7 是否支持多态?

Does PHP7 support polymorphism?

我一直在使用 5.6,但它的动态类型确实存在局限性。我刚刚查看了 PHP7 的文档,最终看起来他们正在削减困扰旧版本的问题,而且他们现在似乎实际上正在 设计 语言.

我看到它支持参数类型提示,这是否意味着我们实际上可以拥有多态函数?

还有一个问题,与切线相关但 PHP7 的当前版本是稳定版本吗?

关于你关于函数参数类型提示的问题,答案是 "Yes",PHP 在这方面支持多态性。

我们可以以矩形和三角形为例。让我们首先定义这三个 classes:

形状class

class Shape {
    public function getName()
    {
        return "Shape";
    }

    public function getArea()
    {
        // To be overridden
    }
}

矩形class

class Rectangle extends Shape {

    private $width;
    private $length;

    public function __construct(float $width, float $length)
    {
        $this->width = $width;
        $this->length = $length;
    }

    public function getName()
    {
        return "Rectangle";
    }


    public function getArea()
    {
        return $this->width * $this->length;
    }
}

三角形class

class Triangle extends Shape {

    private $base;
    private $height;

    public function __construct(float $base, float $height)
    {
        $this->base = $base;
        $this->height = $height;
    }

    public function getName()
    {
        return "Triangle";
    }

    public function getArea()
    {
        return $this->base * $this->height * 0.5;
    }
}

现在我们可以编写一个采用上述形状的函数 class。

function printArea(Shape $shape)
{
    echo "The area of `{$shape->getName()}` is {$shape->getArea()}" . PHP_EOL;
}

$shapes = [];
$shapes[] = new Rectangle(10.0, 10.0);
$shapes[] = new Triangle(10.0, 10.0);

foreach ($shapes as $shape) {
    printArea($shape);
}

一个示例 运行 将产生以下结果:

The area of `Rectangle` is 100
The area of `Triangle` is 50

关于你关于 PHP7 稳定性的第二个问题:是的,PHP7 很稳定并且被许多公司用于生产。