首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

.子内内部调父类属性或方法.解决方案

2014-01-05 
...子内内部调父类属性或方法...class A{public $m20function test(){echo 1}}class B extends A{...子

...子内内部调父类属性或方法...
class A{
     public $m=20;
     function test(){
             echo 1;
     }

}

class B extends A{

...子内内部调父类属性或方法...

}

B继承A,在B类部可以A::test(),parent::test()或者$this->test()这样三种形式调父类的方法,
不知道子类内部调父类属性的方式有几种,难道只有$this->m一种?
[解决办法]
调用属性的话:如果是非static类型的,估计只能 $this->test 了。如果是static的可以 parent::test

热点排行