PHP父类调用子类的protected方法

public 表示全局,类内部外部子类都可以访问;
private表示私有的,只有本类内部可以使用;
protected表示受保护的,只有本 类内部 或子 类内部 或父 类内部 可以访问;


<?php 
class A{ 
    function testA(){ 
        $b=new B();
        $b->testB();//父类内部调用子类的protected方法
        echo "Class A<br/>"; 
    } 

class B extends A{
    function testB2(){ 
        $parent::testA();//子类调用父类的public方法
    } 
    protected function testB() 
    {   
        echo "Class B<br/>"; 
    } 
}
$aa=new A();
$aa->testA();//输出:Class B<br/>Class A<br/> 


$b=new B();
$b->testB();//类外部不能调用protected方法;Fatal error: Call to protected method B::testB()
?> 

参考:
   http://blog.csdn.net/u011436736/article/details/52207636
   http://www.thinkphp.cn/code/1898.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值