继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php--ood继承和重载

所谓伊人_在水一方
关注TA
已关注
手记 273
粉丝 23
获赞 169

<?php

//php继承

//php extends是单一继承

class Father{

function FaPrint(){

return'father class';

   }

}

class Son extends Father{

function SonPrint(){

return'这是'.$this->FaPrint().'son class的调用。</br>';

   }

}

$fa=new Father();

$son=new Son();

echo$fa->FaPrint().'</br>';

echo$son->FaPrint().'</br>';

echo$son->SonPrint();

?>

http://localhost/php/20.php

father class
father class
这是father classson class的调用。

//Php重载

<?php

class Father{

functiontestPrint(){

return'father class';

   }

}

class Son extends Father{

functiontestPrint(){

return'这是'.Father::testPrint().' ,son class的调用。</br>';

   }

}

$fa=new Father();

$son=new Son();

echo$fa->testPrint().'</br>';

echo$son->testPrint().'</br>';

echo$son->testPrint();

?>

http://localhost/php/20.php

father class
这是father class ,son class的调用。

这是father class ,son class的调用。


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP