我希望能够在父构造函数中设置私有属性的值,并在子构造函数或方法中调用该值。
例如:
<?php
abstract class MainClass
{
private $prop_1;
private $prop_2;
function __construct()
{
$this->prop_2 = 'this is the "prop_2" property';
}
}
class SubClass extends MainClass
{
function __construct()
{
parent::__construct();
$this->prop_1 = 'this is the "prop_1" property';
}
public function GetBothProperties()
{
return array($this->prop_1, $this->prop_2);
}
}
$subclass = new SubClass();
print_r($subclass->GetBothProperties());
?>
输出:
Array
(
[0] => this is the "prop_1" property
[1] =>
)
但是,如果我更改prop_2
为protected
,输出将是:
Array
(
[0] => this is the "prop_1" property
[1] => this is the "prop_2" property
)
我有OO 和 php 的基本知识,但我不知道是什么阻止prop_2
了它被调用(或显示?)private
;它不能是私人/公共/受保护的问题,因为“prop_1”是私人的,可以被调用和显示......对吗?
这是在子类与父类中分配值的问题吗?
我会很感激帮助理解为什么。
谢谢你。