靜態方法 靜態方法也就類方法,靜態方法屬於所有對象執行個體的,其形式如下:存取修飾詞 static 方法名(){}注意:在靜態類方法中不能訪問非靜態屬性(變數)。 在類內部 : 類名::類方法名 或者對象名-〉類方法名在類內部: 類名::類方法名 或者 self::類方法名 案例:
<?php //靜態方法的使用class Student{public static $fee=0;public $name;//建構函式function __construct($name){$this->name=$name;echo "初始設定變數<br/>";}public static function enterSchool($ifee){self::$fee+=$ifee;}public static function getFee(){//return self::$fee;return Student::$fee;}//下面寫法是不正確的,靜態方法只能操作靜態變數 public static function test(){echo $this->name;}}//建立學生$stu1=new Student("阿輝");//調用靜態方法的方法://1 通過類名直接調用。//Student::enterSchool(340);//2 通過對象調用$stu1->enterSchool(340);$stu2=new Student("佩佩");Student::enterSchool(30);echo "總學費=".Student::getFee()."||".$stu2->getFee()."<br/>";Student::test();//報錯如下: //Fatal error: Using $this when not in object context in /var/myphp/class/Static.class.php on line 21?>
在實際的編程中,我們往往使用靜態方法去操作靜態變數。
靜態方法的特點:
1、 靜態方法去操作靜態變數
2、 靜態方法不能操作費靜態變數。
注意:普通成員的方法既可以操作靜態變數,也可以操作非靜態變數。