PHP Class類問題

來源:互聯網
上載者:User
color = $color;    }    function what_color() {      return $this->color;    }}function print_vars($obj) {   foreach (get_object_vars($obj) as $prop => $val) {     echo "\t$prop = $val\n";   }}$herbie = new Car("white");print_vars($herbie);?> 

PHP新人一枚,今天在W3C看到PHP物件類型,看了半天不解
為什麼結果是輸出 color = white
能否幫我每行都注釋下

回複內容:

color = $color;    }    function what_color() {      return $this->color;    }}function print_vars($obj) {   foreach (get_object_vars($obj) as $prop => $val) {     echo "\t$prop = $val\n";   }}$herbie = new Car("white");print_vars($herbie);?> 

PHP新人一枚,今天在W3C看到PHP物件類型,看了半天不解
為什麼結果是輸出 color = white
能否幫我每行都注釋下

如果看不懂,那麼說明題主對基礎還沒掌握,來,先看下面的幾個關鍵點:

1,一個類中,如果有和類名相同的方法,那個這方法就是構造方法,但優先順序小於 __construct
2,一個類中,聲明屬性(或方法)時,如果沒有指定許可權修飾符 (public, private, protected),那麼預設為 public
3,get_object_vars 返回一個類的所有 public 類型的屬性數組(屬性名稱 => 屬性值)

現在我們分開來看:

$herbie = new Car("white");

Car 方法 和 Car 類同名,並且沒有聲明 __construct,那麼 Car 方法為構造方法(如 1),同時方法體中的 $this->color = $color 就會被執行。

現在的 color 已經等於 'white' 了。

get_object_vars($obj)

get_object_vars 返回一個類的所有 public 類型的屬性數組,即: array('color' => 'white')。

echo "\t$prop = $val\n" 

的結果即 color = white

別外,題主樣本中的 what_color 方法沒有被調用。

你確定你看了教程?

color = $color;        // this 執行實際運行是對應的對象,上面定義了對象的屬性 color,this->color 就是上面定義的那個color, 第二個 color 就是函數的參數 color    }    function what_color() {   // 對象的方法      return $this->color;     }}function print_vars($obj) {   foreach (get_object_vars($obj) as $prop => $val) { // foreach 遍曆對象屬性的意思     echo "\t$prop = $val\n";   }}$herbie = new Car("white");   // 建立一個對象,會自動調用建構函式print_vars($herbie);?> 

來,新手我從來都是推薦這個:

http://www.phptherightway.com/

1 定義的what_color 是沒有用處的
2 我認為應該看下get_object_vars 的具體用法是什麼
http://php.net/manual/zh/function.get-object-vars.php

可以先去imooc慕課網系統學習PHP的文法以及物件導向,然後看API實踐

太久沒用 都忘了建構函式 可以為類的同名方法 而不用__construct

這代碼也看的是蛋疼蛋疼的,我樓上說的挺準確的

額,這種類的建構函式的寫法,對於新版本,5以上的php是不建議的,但做了向下相容的處理,推薦使用__construct,具體的可以去看下PHP手冊

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.