|
|
|
|
|
在面向?qū)ο缶幊讨?,?lèi)是一個(gè)結(jié)構(gòu),這個(gè)結(jié)構(gòu)定義屬性和方法的集合。它可以被看作是一個(gè)模板。例如:
class Item {
public $itemType; /* e.g. this could be "Book" or "CD" */
public $price;
public function printPrice() {
echo "The price of this {$this->itemType} is {$this->price} dollars.";
}
}
$catch22 = new Item();
$catch22->itemType = "Book";
$catch22->price = 25;
$catch22->printPrice(); /* outputs The price of this Book is 25 dollars. */
$americanPrayer = new Item();
$americanPrayer->itemType = "CD";
$americanPrayer->price = 22;
$americanPrayer->printPrice(); /* outputs The price of this CD is 22 dollars */
注意在這個(gè)例子中,$catch22 和 $americanPrayer 是兩個(gè)對(duì)象。對(duì)象是一個(gè)類(lèi)的實(shí)例。他們共享類(lèi)定義的公共結(jié)構(gòu)。公共結(jié)構(gòu)由屬性(上述例子中的 $itemType 和 $price)和方法(上述例子中的函數(shù) printPrice() )組成。然而,不同對(duì)象的熟悉可能不同。
在上述例子中,同一類(lèi)的兩個(gè)對(duì)象的 price 和 itemType 是不同的,但是兩個(gè)對(duì)象都有一個(gè) printPrice() 方法,一個(gè) price 和一個(gè) itemType 屬性被使用。
比較表
類(lèi) | 對(duì)象 | |
---|---|---|
定義 | 類(lèi)是一個(gè)單個(gè)單元中綁定數(shù)據(jù)成員和相關(guān)方法的結(jié)構(gòu)。 | 類(lèi)的實(shí)例或變量 |
存在 | 它是一個(gè)邏輯存在 | 它是一個(gè)物理存在 |
內(nèi)存分配 | 當(dāng)它創(chuàng)建時(shí),內(nèi)存空間未分配 | 當(dāng)它創(chuàng)建時(shí),要分配內(nèi)存空間 |
聲明/定義 | 定義創(chuàng)建一次 | 當(dāng)你需要時(shí)可以創(chuàng)建很多次 |
理解類(lèi)和對(duì)象之間的區(qū)別的另一種方法是把類(lèi)作為模具,而對(duì)象是作為使用模具產(chǎn)生的物品。