php继承中this调用方法的顺序

2020-12-28 14:28

阅读:698

标签:父类   方法   class   pre   method   类方法   public   调用   UNC   

class father
{        //定义father类
    public function getMethod()
    {        //定义方法
        $this->method();
    }

    public function method()
    {        //定义方法
        echo ‘
father method‘; } } class son extends father { //定义继承自father类的son类 public function method() { //重写父类方法 echo ‘son method‘; } } $son = new son(); //实例化son类的对象 //调用son类的方法 $son->getMethod();

输出:son method

php继承中this调用方法的顺序

标签:父类   方法   class   pre   method   类方法   public   调用   UNC   

原文地址:https://www.cnblogs.com/cnlihao/p/14172665.html


评论


亲,登录后才可以留言!