php5中this_self_parent關鍵字用法講解

PHP從5開始具有了大部分面嚮對象語言的特性,比PHP4多了不少面向對象的特性,在此咱們主要講解三個關鍵字: this,self,parent,從字面上比較好理解,是指這,本身,父親,咱們先創建幾個概念,這三個關鍵字分別是用在什麼地方呢?咱們初步解釋一下,this是指向當前對象的指針(咱們姑且用C裏面的指針來看吧),self是指向當前類的指針,parent是指向父類的指針。 下面經過實例講解。 (1) this <?php class UserName { //定義屬性 private $name; //定義構造函數 function __construct( $name ){ $this->name = $name; //這裏已經使用了this指針 } //析構函數 function __destruct(){} //打印用戶名成員函數 function printName(){ print( $this->name ); //又使用了this指針 } } //實例化對象 $nameObject = new UserName( "heiyeluren" ); //執行打印 $nameObject->printName(); //輸出: heiyeluren //第二次實例化對象 $nameObject2 = new UserName( "PHP5" ); //執行打印 $nameObject2->printName(); //輸出:PHP5 ?> 我 們看,上面的類分別在11行和20行使用了this指針,那麼當時this是指向誰呢?其實this是在實例化的時候來肯定指向誰,好比第一次實例化對象 的時候(25行),那麼當時this就是指向$nameObject對象,那麼執行18行的打印的時候就把print( $this-><name )變成了print( $nameObject->name ),那麼固然就輸出了"heiyeluren"。第二個實例的時候,print( $this->name )變成了print( $nameObject2->name ),因而就輸出了"PHP5"。因此說,this就是指向當前對象實例的指針,不指向任何其餘對象或類。 (2)self 首先咱們要明確一點,self是指向類自己,也就是self是不指向任何已經實例化的對象,通常self使用來指向類中的靜態變量。 <?php class Counter { //定義屬性,包括一個靜態變量 private static $firstCount = 0; private $lastCount; //構造函數 function __construct(){ $this->lastCount = ++self::$firstCount; //使用self來調用靜態變量,使用self調用必須使用::(域運算符號) } //打印最次數值 function printLastCount(){ print( $this->lastCount ); } } //實例化對象 $countObject = new Counter(); $countObject->printLastCount(); //輸出 1 ?> 我 們這裏只要注意兩個地方,第6行和第12行。咱們在第二行定義了一個靜態變量$firstCount,而且初始值爲0,那麼在12行的時候調用了這個值 得,使用的是self來調用,而且中間使用"::"來鏈接,就是咱們所謂的域運算符,那麼這時候咱們調用的就是類本身定義的靜態變量$frestCount,咱們的靜態變量與下面對象的實例無關,它只是跟類有關,那麼我調用類自己的的,那麼咱們就沒法使用this來引用,可使用 self來引用,由於self是指向類自己,與任何對象實例無關。換句話說,假如咱們的類裏面靜態的成員,咱們也必須使用self來調用。 (3)parent 咱們知道parent是指向父類的指針,通常咱們使用parent來調用父類的構造函數。 <?php //基類 class Animal { //基類的屬性 public $name; //名字 //基類的構造函數 public function __construct( $name ){ $this->name = $name; } } //派生類 class Person extends Animal //Person類繼承了Animal類 { public $personSex; //性別 public $personAge; //年齡 //繼承類的構造函數 function __construct( $personSex, $personAge ){ parent::__construct( "heiyeluren" ); //使用parent調用了父類的構造函數 $this->personSex = $personSex; $this->personAge = $personAge; } function printPerson(){ print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge ); } } //實例化Person對象 $personObject = new Person( "male", "21"); //執行打印 $personObject->printPerson(); //輸出:heiyeluren is male,this year 21 ?> 咱們注意這麼幾個細節:成員屬性都是public的,特別是父類的,是爲了供繼承類經過this來訪問。咱們注意關鍵的地方,第25行:parent:: __construct( "heiyeluren" ),這時候咱們就使用parent來調用父類的構造函數進行對父類的初始化,由於父類的成員都是public的,因而咱們就可以在繼承類中直接使用this來調用。
相關文章
相關標籤/搜索