编程语言
首页 > 编程语言> > 在PHP中初始化静态成员

在PHP中初始化静态成员

作者:互联网

class Person {
  public static function ShowQualification() {
  }
}

class School {
  public static $Headmaster = new Person(); // NetBeans complains about this line
}

为什么这不可能呢?

我希望能够像这样使用

School::Headmaster::ShowQualification();

..无需实例化任何类.我该怎么做?

更新:好的,我了解WHY部分.有人可以解释如何做吗?谢谢 :)

解决方法:

the docs开始,

“Like any other PHP static variable,
static properties may only be
initialized using a literal or
constant; expressions are not
allowed.”

new Person()不是文字或常量,因此这是行不通的.

您可以使用解决方法:

class School {
  public static $Headmaster;
}

School::$Headmaster = new Person();

标签:php,static-members
来源: https://codeday.me/bug/20191013/1908176.html