php抽象类继承错误,没有抽象方法可以继承

时间:2013-07-03 20:25:35

标签: php oop inheritance decorator abstract

我是OOP的相对新手,我在学习练习中遇到了这个错误。

Class contains 6 abstract methods and must therefore be declared abstract or implement the remaining methods

从抽象类的子类抛出错误,实现接口。我知道抽象类的子节点必须实现所有抽象方法,但我没有在父类或接口中声明任何抽象方法。如果我没有在子类中包含抽象类或接口中声明的抽象方法,那么我不应该只收到此错误吗?

儿童班:

class OuterViewDecorator extends AbstractViewDecorator
    {
    const DEFAULT_TEMPLATE = "/var/www/portfolio/simple-php/templates/layout.php";

    public function render() {
        $data["innerview"] = $this->view->render();
        return $this->renderTemplate($data);
    }
}

父类:

abstract class AbstractViewDecorator implements ViewInterface
{
    const DEFAULT_TEMPLATE = "default.php";
    protected $template = self::DEFAULT_TEMPLATE;
    protected $view;    

    public function __construct(ViewInterface $view)
    {
        $this->view = $view;
    }   

    public function render()
    {
        return $this->view->render();
    }   

    public function renderTemplate(array $data = array())
    {
        extract($data);
        ob_start();
        $template = include $this->template;
        return ob_get_clean($template);
    }
}

接口:

interface ViewInterface
{
    public function setTemplate($template);
    public function getTemplate();
    public function __set($field, $value);
    public function __get($field);
    public function __isset($field);
    public function __unset($field);
    public function render();
}

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

你说它正在实施一个界面。

在所有继承类之间必须实现所有的接口方法 例如,您的AbstractViewDecorator可以实现2个方法,OuterViewDecorator可以实现最后4个,或OuterViewDecorator可以执行所有6个..只要所有方法都在类继承链。