php基础 继承_子类中如何调用父类的变量和方法

[php]  view plain  copy
  1.   
  2. class A{  
  3.     public $a1='a1';  
  4.     protected $a2='a2';  
  5.     function test(){  
  6.            echo "hello!
    "
    ;  
  7.     }  
  8. }  
  9. class B extends A{//若A类和B类不在同一文件中 请包含后(include)再操作  
  10.     public $a1='b1';  
  11.     function test2(){  
  12.             $this->test();  
  13.               parent::test();//子类调用父类方法  
  14.     }  
  15.     function test()  
  16.     {     
  17.         echo $this->a1.',';  
  18.         echo $this->a2.',';  
  19.         echo "b2_test_hello
    "
    ;  
  20.     }  
  21. }  
  22. $a = new B();  
  23. $a->test();//b1,a2,b2_test_hello  
  24. $a->test2();//b1,a2,b2_test_hello//hello!  
  25.   
  26. ?>  
方法的调用:$this->方法名();如果子类中有该方法则调用的是子类中的方法,若没有则是调用父类中的

          parent::则始终调用的是父类中的方法。

变量的调用:$this->变量名;如果子类中有该变量则调用的是子类中的,若没有则调用的是父类中的

你可能感兴趣的:(php)