dsorecdf78171 2017-06-02 18:21
浏览 316
已采纳

PHP中带有变量参数列表的抽象方法

I came across a question in OOP in PHP. I tried to implement an abstract parent class method and from the child class, I have to use it with a variable number of arguments.

Here is the error thrown :

PHP Fatal error: Declaration of Square::getArea($length) must be compatible with Shape::getArea()

And the classes :

abstract class Shape {
    abstract protected function getArea();
}

class Square extends Shape {

    public function getArea($length)
    {
        return pow($length, 2);
    }

}

class Triangle extends Shape {

    public function getArea($base, $height)
    {
        return .5 * $base * $height;
    }

}

I could use the child's __construct() methods to set the properties of the different shapes at the initiation time but I'd like to know if another way exists and allows me to define variable list of parameters.

Thanks in advance.

  • 写回答

2条回答 默认 最新

  • douping7975 2017-06-02 19:49
    关注

    As in the comments under your question mentioned, there are several ways to solve your issue.

    Class properties and the constructor That would be the easiest approach in my opinion. It 's easy and smart.

    interface Shape
    {
        protected function getShape();
    }
    
    class Square implements Shape
    {
        protected $length;
    
        public function __construct(int $length)
        {
            $this->length = $length;
        }
    
        protected function shape()
        {
            return pow($this->length, 2);
        }
    }
    
    class Triangle implements Shape
    {
        protected $base;
    
        protected $height;
    
        public function __construct(int $base, int $height)
        {
            $this->base = $base;
            $this->height = $height;
        }
    
        protected function getShape()
        {
            return .5 * $this->base * $this->height;
        }
    }
    

    Every class implements the Shape interface. The getShape method got no attributes. The attributes are protected properties of the class itself. You set these properties when calling the constructor of the specific class.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序