class Person {
public static function ShowQualification() {
}
}
class School {
public static $Headmaster = new Person(); // NetBeans complains about this line
}
爲什麼不能這樣做?在PHP中初始化靜態成員
我希望能夠利用這個像
School::Headmaster::ShowQualification();
..無任何實例類。我該怎麼做?
更新:好吧,我明白了爲什麼。有人可以解釋如何部分?謝謝:)
靜態屬性也被稱爲類的屬性相反的對象屬性。你爲什麼只想要*所有*學校的*校長? – Gumbo 2010-05-29 06:49:47
請不要在語義上看它。我無法發佈我的專有代碼。我只是想到了一個愚蠢的例子。不妨將它們命名爲abc和xyz:D – Senthil 2010-05-29 06:54:10