为什么父类中可以调用子类的方法?

abstractclassA{
private$name;
function__construct($param){
$this->name='liming'.'
';
}
functiongetName(){
echo$this->name;
}
//调用子类中的方法getAge2
functiongetAge(){
$this->getAge2();
}
functiongetAge3(){
return'23';
}
}
classBextendsA{
functiongetAge2(){
echo$this->getAge3();
}
}
$a=newB('a');
$a->getName();
$a->getAge();
慕田峪9158850
浏览 364回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript