Home >Backend Development >PHP Tutorial >关于类继承的一个问题

关于类继承的一个问题

WBOY
WBOYOriginal
2016-06-06 20:18:061168browse

下面的这段代码:

<code>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 ();</code>

输出为什么是

<code>Bar::testPrivate 
Foo::testPubli</code>

而不是

<code>Foo::testPrivate 
Foo::testPubli</code>

回复内容:

下面的这段代码:

<code>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 ();</code>

输出为什么是

<code>Bar::testPrivate 
Foo::testPubli</code>

而不是

<code>Foo::testPrivate 
Foo::testPubli</code>

Foo类里的testPublic()方法重写了父类Bar的testPublic();
而testPrivate()的属性是private,只能被同一个类对象访问,哪怕不是同一个实例,既然只能被同一个类对象访问,那肯定也不会被重写,所以才会出现上面的输出

私有方法不会被继承,所以由于test()方法是在父类里面定义的,其中引用的私有方法始终都是调用父类的,不管子类里有没有定义与其同名的方法。

这个方法域有关,在调用Bartest方法时,phpcalling scopeFoo,所以public的方法会因为重写被覆盖掉,而private的方法只会依照可见性采用Bar里的方法。

父类中的private方法子类不能重写与调用

Foo 类虽然重写了两个方法,但是没有重写test()方法。

而执行父类的test方法时,$this是调用父类的私有方法,即父类有此私有方法,则调用父类的。父类没有,才会用子类的。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn