我对 php 手册中的示例感到困惑。这是关于能见度的。这是示例。
class Bar {
public function test() {
$this->testPrivate();
$this->testPublic();
}
public function testPublic() {
echo "Bar::testPublic\n";
}
private function testPrivate() {
echo "Bar::testPrivate\n";
}
}
class Foo extends Bar {
public function testPublic() {
echo "Foo::testPublic\n";
}
private function testPrivate() {
echo "Foo::testPrivate\n";
}
}
$myFoo = new foo();
$myFoo->test();
?>
http://www.php.net/manual/en/language.oop5.visibility.php
此示例输出
Bar::testPrivate
Foo::testPublic
请你解释一下这是怎么发生的?
为什么两者testPublic()
都不叫?
我var_dump($this)
在 Bar 类结构中放置了一个。它打印object(Foo)[1]
。我知道的是私有属性可以在同一个类中调用。
那么“ Bar::testPrivate
”怎么称呼呢?