程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP5.0對象模型的屬性和方法分析

PHP5.0對象模型的屬性和方法分析

編輯:關於PHP編程

今天我們向大家介紹的是關於可以聯用->,如果一個對象的屬性包含了一個對象,你可以使用兩個->運算符來得到內部對象的屬性。 你甚至可以用雙重引用的字符串來放置這些表達式。 下面的例子中,對象House中的屬性room包含了一組Room對象。

訪問方法和訪問屬性類似。->運算符用來指向實例的方法。 在下面的中調用getLastLogin就是。方法執行起來和類外的函數幾乎相同。

如果一個類從另一類中繼承而來,父類中的屬性和方法將在子類中都有效,即使在子類中沒有聲明。 像以前提到過的,繼承是非常強大的。 如果你想訪問一個繼承的屬性,你只需要像訪問基類自己的屬性那樣引用即可,使用::運算符。

  1. class Room   
  2. {   
  3.  public $name;   
  4.  
  5.  function __construct($name="unnamed")   
  6.  {   
  7. $this->name = $name;   
  8.  }   
  9. }   
  10.  
  11. class House   
  12. {   
  13.  //array(促銷產品 主營產品) of rooms   
  14.  public $room;   
  15. }   
  16.  
  17. //create empty house   
  18. $home = new house;   
  19.  
  20. //add some rooms   
  21. $home->room[] = new Room("bedroom");   
  22. $home->room[] = new Room("kitchen");   
  23. $home->room[] = new Room("bathroom");   
  24.  
  25. //show the first room of the house   
  26. print($home->room[0]->name);   
  27. ?>  


PHP5.0對象模型有兩個特殊的命名空間:parent命名空間指向父類,self命名空間指向當前的類。下面的例子中顯示了如何用parent命名空間來調用父類中的構造函數。 同時也用self來在構造函數中調用另一個類方法。

  1. class Animal //動物   
  2. {   
  3.  public $blood; //熱血or冷血屬性   
  4.  public $name;   
  5.  public function __construct($blood, $name=NULL)   
  6.  {   
  7. $this->blood = $blood;   
  8. if($name)   
  9. {   
  10.  $this->name = $name;   
  11. }   
  12.  }   
  13. }   
  14.  
  15. class Mammal extends Animal //哺乳動物   
  16. {   
  17.  public $furColor; //皮毛顏色   
  18.  public $legs;   
  19.  
  20.  function __construct($furColor, $legs, $name=NULL)   
  21.  {   
  22. parent::__construct("warm", $name);   
  23. $this->furColor = $furColor;   
  24. $this->legs = $legs;   
  25.  }   
  26. }   
  27.  
  28. class Dog extends Mammal   
  29. {   
  30.  function __construct($furColor, $name)   
  31.  {   
  32. parent::__construct($furColor, 4, $name);   
  33.  
  34. self::bark();   
  35.  }   
  36.  
  37.  function bark()   
  38.  {   
  39. print("$this->name says 'woof!'");   
  40.  }   
  41. }   
  42.  
  43. $d = new Dog("Black and Tan", "Angus");   
  44. ?>  

對於對象的成員來是這樣調用的:如果你需要在運行時確定變量的名稱,你可以用$this->$Property這樣的表達式。 如果你想調用方法,可以用$obj->$method()。

你也可以用->運算符來返回一個函數的值,這在PHP以前的版本中是不允許的。例如,你可以寫一個像這樣的PHP5.0對象模型的表達式: $obj->getObject()->callMethod()。這樣避免了使用一個中間變量,也有助於實現某些設計模式,如Factory模式。


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