程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP5指針的類別介紹

PHP5指針的類別介紹

編輯:關於PHP編程

大家也許多首先我們來理解三個關鍵字: this,self,parent,從字面上比較好理解,是指這,自己,父親,呵呵,比較好玩了,我們先建立幾個概念,這三個關鍵字分別是用在什麼地方 呢?我們初步解釋一下,this是指向當前對象的指針(我們姑且用C裡面的指針來看吧),self是指向當前類的指針,parent是指向父類的指針。

這麼說還不能很了解,那我們就根據實際的例子結合來講講。

(1) PHP5指針之this

  1. <?php   
  2.  
  3. class UserName  
  4. {   
  5. //定義屬性   
  6. private $name;  
  7.  
  8. //定義構造函數  
  9. function __construct( $name )  
  10. {  
  11. $this->name = $name; //這裡已經使用了this指針  
  12. }  
  13.  
  14. //析構函數  
  15. function __destruct(){}  
  16.  
  17. //打印用戶名成員函數  
  18. function printName()  
  19. {  
  20. print( $this->name ); //又使用了this指針  
  21. }  
  22. }  
  23.  
  24. //實例化對象  
  25. $nameObject = new UserName( "heiyeluren" );  
  26.  
  27. //執行打印  
  28. $nameObject->printName(); //輸出: heiyeluren  
  29.  
  30. //第二次實例化對象  
  31. $nameObject2 = new UserName( "PHP5" );  
  32.  
  33. //執行打印  
  34. $nameObject2->printName(); //輸出:PHP5  
  35. ?> 

我們看,上面的類分別在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)PHP5指針之self

首先我們要明確一點,self是指向類本身,也就是self是不指向任何已經實例化的對象,一般self使用來指向類中的靜態變量。

  1. <?php 
  2.  
  3. class Counter  
  4. {  
  5. //定義屬性,包括一個靜態變量  
  6. private static $firstCount = 0;  
  7. private $lastCount;  
  8. //構造函數  
  9. function __construct()  
  10. {  
  11. $this->lastCount = ++selft::$firstCount; //使用self來調用靜態變量,使用self調用必須使用::(域運算符號)  
  12. }  
  13. //打印最次數值  
  14. function printLastCount()  
  15. {  
  16. print( $this->lastCount );  
  17. }   
  18. }  
  19.  
  20. //實例化對象  
  21. $countObject = new Counter();  
  22. $countObject->printLastCount(); //輸出 1  
  23. ?> 

我們這裡只要注意兩個地方,第6行和第12行。我們在第二行定義了一個靜態變量$firstCount,並且初始值為0,那麼在12行的時候調用了這個值 得,使用的是self來調用,並且中間使用"::"來連接,就是我們所謂的域運算符,那麼這時候我們調用的就是類自己定義的靜態變量$ frestCount,我們的靜態變量與下面對象的實例無關,它只是跟類有關,那麼我調用類本身的的,那麼我們就無法使用this來引用,可以使用 self來引用,因為self是指向類本身,與任何對象實例無關。換句話說,假如我們的類裡面靜態的成員,我們也必須使用self來調用。

(3)PHP5指針之parent

我們知道parent是指向父類的指針,一般我們使用parent來調用父類的構造函數。

  1. <?php 
  2. //基類  
  3. class Animal  
  4. {  
  5. //基類的屬性  
  6. public $name; //名字  
  7. //基類的構造函數  
  8. public function __construct( $name )  
  9. {  
  10. $this->name = $name;  
  11. }  
  12. }  
  13. //派生類  
  14. class Person extends Animal //Person類繼承了Animal類  
  15. {  
  16. public $personSex; //性別  
  17. public $personAge; //年齡  
  18. //繼承類的構造函數  
  19. function __construct( $personSex, $personAge )  
  20. {  
  21. parent::__construct( "heiyeluren" ); //使用parent調用了父類的構造函數  
  22. $this->personSex = $personSex;  
  23. $this->personAge = $personAge;  
  24. }  
  25. function printPerson()  
  26. {  
  27. print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge );  
  28. }  
  29. }  
  30. //實例化Person對象  
  31. $personObject = new Person( "male", "21");  
  32.  
  33. //執行打印  
  34. $personObject->printPerson(); //輸出:heiyeluren is male,this year 21  
  35.  
  36. ?> 
我們注意這麼幾個細節:成員屬性都是public的,特別是父類的,是為了供繼承類通過this來訪問。我們注意關鍵的地方,第25行:parent:: __construct( "heiyeluren" ),這時候我們就使用PHP5指針中的parent來調用父類的構造函數進行對父類的初始化,因為父類的成員都是public的,於是我們就能夠在繼承類中直接使用 this來調用。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved