欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 类与对象中的访问控制(可见性)

程序员文章站 2022-05-01 13:26:53
...


类与对象 > 访问控制(可见性)
同一个类的对象即使不是同一个实例也可以互相访问对方的私有与受保护成员。这是由于在这些对象的内部具体实现的细节都是已知的。

访问同一个对象类型的私有成员

<?phpclass Test{
    private $foo;    public function construct($foo)
    {
        $this->foo = $foo;
    }    private function bar()
    {
        echo 'Accessed the private method.';
    }    public function baz(Test $other)
    {
        // We can change the private property:
        $other->foo = 'hello';
        var_dump($other->foo);        // We can also call the private method:
        $other->bar();
    }
}$test = new Test('test');$test->baz(new Test('other'));?>

//发现:通过传入实例对象,实现了在外部访问私有方法和属性

类与对象 > 访问控制(可见性)
同一个类的对象即使不是同一个实例也可以互相访问对方的私有与受保护成员。这是由于在这些对象的内部具体实现的细节都是已知的。

访问同一个对象类型的私有成员

<?phpclass Test{
    private $foo;    public function construct($foo)
    {
        $this->foo = $foo;
    }    private function bar()
    {
        echo 'Accessed the private method.';
    }    public function baz(Test $other)
    {
        // We can change the private property:
        $other->foo = 'hello';
        var_dump($other->foo);        // We can also call the private method:
        $other->bar();
    }
}$test = new Test('test');$test->baz(new Test('other'));?>

//发现:通过传入实例对象,实现了在外部访问私有方法和属性

以上就是php 类与对象中的访问控制(可见性)的详细内容,更多请关注其它相关文章!

相关标签: php 可见 控制