php基礎(chǔ)知識:類與對象(5) static
Declaring class members or methods as static makes them accessible without needing an instantiation of the class. A member declared as static can not be accessed with an instantiated class object (though a static method can).
聲明靜態(tài)的類變量和方法可以不需要實例化類對象的情況下對他們進(jìn)行調(diào)用。靜態(tài)類不能被類對象調(diào)用。(類的靜態(tài)方法可以)。//注意看第一個例子,在一個非靜態(tài)的方法中調(diào)用了靜態(tài)的變量。唯一的不同是用了self。難道用了self就可以????不知道???需要一個試驗。
The static declaration must be after the visibility declaration. For compatibility with PHP4, if no visibility declaration is used, then the member or method will be treated as if it was declared as public.
靜態(tài)聲明必須必須是顯式的聲明。為了兼容PHP4,如果沒有顯式聲明的對象或者方法,被當(dāng)作聲明為public。
Because static methods are callable without an instance of the object created, the pseudo variable $this is not available inside the method declared as static.
因為靜態(tài)方法不需要實例化類對象來調(diào)用,所以偽變量$this在靜態(tài)方法中也是不可用的。
In fact static method calls are resolved at compile time. When using an explicit class name the method is already identified completely and no inheritance rules apply. If the call is done by self then self is translated to the current class, that is the class the code belongs to. Here also no inheritance rules apply.
實際上,靜態(tài)的方法調(diào)用在編譯時已經(jīng)確定了。(這段我不會翻譯。???不明白???)
求了很久求來的翻譯如下:
------------------------------------------------
實際上,靜態(tài)方法的調(diào)用在編譯時解決。當(dāng)使用一個明確的類名時,方法已經(jīng)被完全識別而不需要應(yīng)用繼承規(guī)則。如果由自身調(diào)用,那么自身被解析成當(dāng)前的類,也就是代碼所屬的類。這里也沒有應(yīng)用繼承規(guī)則。
但是一個新的問題:
這里不一定有繼承產(chǎn)生,為什么會提到繼承規(guī)則?(???不明白????)
Static properties cannot be accessed through the object using the arrow operator ->. Calling non-static methods statically generates an E_STRICT level warning.
靜態(tài)成員不能被類的對象通過箭頭符號->來調(diào)用。靜態(tài)的調(diào)用一個非靜態(tài)方法會導(dǎo)致一個E_STRICT級別的警告。
靜態(tài)成員例:
{
public static $my_static = 'foo';
public function staticValue() {
return self::$my_static;//注意這里!!!!
//return $my_static;//這樣寫會不會出錯。需要試驗
}
}
class Bar extends Foo
{
public function fooStatic() {
return parent::$my_static;//注意這里!!!!
}
}
print Foo::$my_static . " n";
$foo = new Foo();
print $foo->staticValue() . " n";
print $foo->my_static . " n"; // 未定義的"Property" my_static
// $foo::my_static is not possible
print Bar::$my_static . " n";
$bar = new Bar();
print $bar->fooStatic() . " n";
靜態(tài)方法例:
class Foo {
public static function aStaticMethod() {
// ...
}
}
Foo::aStaticMethod();
- PHP類與對象后期靜態(tài)綁定操作實例詳解
- 詳解php中的類與對象(繼承)
- PHP類與對象中的private訪問控制的疑問
- php基礎(chǔ)知識:類與對象(4) 范圍解析操作符(::)
- php基礎(chǔ)知識:類與對象(3) 構(gòu)造函數(shù)和析構(gòu)函數(shù)
- php基礎(chǔ)知識:類與對象(2) 自動加載對象
- php基礎(chǔ)知識:類與對象(1)
- PHP學(xué)習(xí)記錄之面向?qū)ο螅∣bject-oriented programming,OOP)基礎(chǔ)【接口、抽象類、靜態(tài)方法等】
- PHP學(xué)習(xí)記錄之面向?qū)ο螅∣bject-oriented programming,OOP)基礎(chǔ)【類、對象、繼承等】
- PHP面向?qū)ο蟪绦蛟O(shè)計子類擴(kuò)展父類(子類重新載入父類)操作詳解
- PHP中類與對象功能、用法實例解讀
相關(guān)文章
php實現(xiàn)將wav文件轉(zhuǎn)換成圖像文件并在頁面中顯示的方法
這篇文章主要介紹了php實現(xiàn)將wav文件轉(zhuǎn)換成圖像文件并在頁面中顯示的方法,涉及php中unpack、fopen、fread等方法及圖形操作的相關(guān)技巧,需要的朋友可以參考下2015-04-04
PHP實現(xiàn)的只保留字符串首尾字符功能示例【隱藏部分字符串】
這篇文章主要介紹了PHP實現(xiàn)的只保留字符串首尾字符功能,結(jié)合實例形式分析了php隱藏部分字符串相關(guān)的字符串遍歷、截取相關(guān)操作技巧,需要的朋友可以參考下2019-03-03
Discuz 5.0 中讀取純真IP數(shù)據(jù)庫函數(shù)分析
Discuz 5.0 中讀取純真IP數(shù)據(jù)庫函數(shù)分析...2007-03-03

