登录
首页 >  文章 >  php教程

PHP中,$this在继承关系中为何无法访问子类重新定义的私有方法?

时间:2024-11-02 12:06:55 219浏览 收藏

本篇文章向大家介绍《PHP中,$this在继承关系中为何无法访问子类重新定义的私有方法?》,主要包括,具有一定的参考价值,需要的朋友可以参考一下。

PHP中,$this在继承关系中为何无法访问子类重新定义的私有方法?

php中$this在继承中的困境

在php中,$this变量指向当前对象的实例。在继承关系中,子类对象可以继承父类的所有公有和保护的属性和方法,但私有成员则无法被继承。

然而,在某些情况下,子类对象看似可以访问父类的私有方法,这让人感到困惑。如以下代码所示:

class super
{
    private function printhello() {
        echo get_called_class() . ' hello' . php_eol;
    }

    public function printtest() {
        var_dump(get_class($this));
        var_dump(get_class_methods($this));
        $this->printhello();
    }
}

class child extends super
{
    public function printhello() {
        echo "阿凡提de小毛驴";
    }
}

$super = new super();
echo $super->printtest();
echo '------------------------------------'.php_eol;
$child = new child();
echo $child->printtest();

输出结果:

string(5) "Super"
array(2) {
  [0] =>
  string(10) "printHello"
  [1] =>
  string(9) "printTest"
}
Super hello
------------------------------------
string(5) "Child"
array(2) {
  [0] =>
  string(10) "printHello"
  [1] =>
  string(9) "printTest"
}
Child hello

为什么$child->printtest()没有调用子类的printhello()方法,而是调用了父类的私有方法printhello()?

原因在于php的静态绑定机制。在php中,私有方法的调用在编译时就决定了,并且永远指向父类的实现,无论子类是否重新定义了该方法。换句话说,$this->printhello()在编译时就被替换为父类的printhello()方法,因此子类无法覆盖它。

因此,在调用私有方法时,子类对象本质上访问的是父类的私有方法,即使该方法在子类中重新定义。

理论要掌握,实操不能落!以上关于《PHP中,$this在继承关系中为何无法访问子类重新定义的私有方法?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>