duan89197 2017-10-14 13:20
浏览 26

$ this->给出错误,但$ this-> a = 20; 输出为什么? [重复]

This question already has an answer here:

<?php
    class Test
    {
        private $a = 10;
        public $b ='abc';



}
class Test2 extends Test
{

    function __construct()
    {

         echo $this->a;
         echo $this->a = 20; // wh
    }

}
$test3 = new Test2();
</div>
  • 写回答

2条回答 默认 最新

  • dscss8996 2017-10-14 13:24
    关注
    echo $this->a;
    

    echoes value of class property a. This property is not defined, because property a of class Test is private and therefore is not available in class Test2. So, property a is created in class Test2.

    echo $this->a = 20; // wh
    

    does the next: assigns 20 to a property (which was created on the previous line) and echoes result of assignment which is 20.

    The solution:

    class Test
    {
            // protected property is avalilable in child classes
            protected $a = 10;
            public $b ='abc';
    }
    
    class Test2 extends Test
    {
        function __construct()
        {
             echo $this->a;
             $this->a = 20;
             echo $this->a;
        }
    }
    $test3 = new Test2();  // outputs 10 20
    
    评论

报告相同问题?

悬赏问题

  • ¥15 Oracle触发器记录修改前后的字段值
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器