码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2020-12-28 11:40:40      阅读:0      评论:0      收藏:0      [点我收藏+]

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

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

    public function method()
    {        //定义方法
        echo ‘<br />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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!