php實(shí)現(xiàn)parent調(diào)用父類(lèi)的構(gòu)造方法與被覆寫(xiě)的方法
來(lái)源:易賢網(wǎng) 閱讀:624 次 日期:2015-02-13 10:49:13
溫馨提示:易賢網(wǎng)小編為您整理了“php實(shí)現(xiàn)parent調(diào)用父類(lèi)的構(gòu)造方法與被覆寫(xiě)的方法”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了php實(shí)現(xiàn)parent調(diào)用父類(lèi)的構(gòu)造方法與被覆寫(xiě)的方法,在上一篇關(guān)于使用類(lèi)繼承解決代碼重復(fù)問(wèn)題的基礎(chǔ)上,進(jìn)一步分析了parent調(diào)用父類(lèi)的構(gòu)造方法與被覆寫(xiě)的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了php實(shí)現(xiàn)parent調(diào)用父類(lèi)的構(gòu)造方法與被覆寫(xiě)的方法。分享給大家供大家參考。具體分析如下:

覆寫(xiě):被重新設(shè)計(jì)。

在子類(lèi)中定義構(gòu)造方法時(shí),需要傳遞參數(shù)給父類(lèi)的構(gòu)造方法,否則我們得到的可能是一個(gè)構(gòu)造不完整的對(duì)象。

要調(diào)用父類(lèi)的方法,首先要找到一個(gè)引用類(lèi)本身的途徑:句柄(handle),PHP為此提供了parent關(guān)鍵字。

parent 調(diào)用父類(lèi)的構(gòu)造方法

要引用一個(gè)類(lèi)而不是對(duì)象的方法,可以使用 ::(兩個(gè)冒號(hào)),而不是 ->。

所以, parent::__construct() 以為著調(diào)用父類(lèi)的 __construct() 方法。

修改上篇《使用類(lèi)繼承解決代碼重復(fù)等問(wèn)題》中的代碼,讓每個(gè)類(lèi)只處理自己的數(shù)據(jù):

代碼如下:

<?php

header('Content-type:text/html;charset=utf-8');

// 從這篇開(kāi)始,類(lèi)名首字母一律大寫(xiě),規(guī)范寫(xiě)法

class ShopProduct{ // 聲明類(lèi)

public $title; // 聲明屬性

public $producerMainName;

public $producerFirstName;

public $price;

function __construct($title,$firstName,$mainName,$price){

$this -> title = $title; // 給屬性 title 賦傳進(jìn)來(lái)的值

$this -> producerFirstName= $firstName;

$this -> producerMainName = $mainName;

$this -> price= $price;

}

function getProducer(){ // 聲明方法

return "{$this -> producerFirstName }"."{$this -> producerMainName}";

}

function getSummaryLine(){

$base = "{$this->title}( {$this->producerMainName},";

$base .= "{$this->producerFirstName} )";

return $base;

}

}

class CdProduct extends ShopProduct {

public $playLenth;

function __construct($title,$firstName,$mainName,$price,$playLenth){

parent::__construct($title,$firstName,$mainName,$price);

$this -> playLenth= $playLenth;

}

function getPlayLength(){

return $this -> playLength;

}

function getSummaryLine(){

$base = "{$this->title}( {$this->producerMainName},";

$base .= "{$this->producerFirstName} )";

$base .= ":playing time - {$this->playLength} )";

return $base;

}

}

// 定義類(lèi)

class BookProduct extends ShopProduct {

public $numPages;

function __construct($title,$firstName,$mainName,$price,$numPages){

parent::__construct($title,$firstName,$mainName,$price);

$this -> numPages= $numPages;

}

function getNumberOfPages(){

return $this -> numPages;

}

function getSummaryLine(){

$base = "{$this->title}( {$this->producerMainName},";

$base .= "{$this->producerFirstName} )";

$base .= ":page cont - {$this->numPages} )";

return $base;

}

}

?>

每個(gè)子類(lèi)都會(huì)在設(shè)置自己的屬性前調(diào)用父類(lèi)的構(gòu)造方法。基類(lèi)(父類(lèi))現(xiàn)在僅知道自己的數(shù)據(jù),而我們也應(yīng)該盡量避免告訴父類(lèi)任何關(guān)于子類(lèi)的信息,這是一條經(jīng)驗(yàn)規(guī)則,大家想想如果某個(gè)子類(lèi)的信息應(yīng)該是”保密“的,結(jié)果父類(lèi)知道它的信息,其它子類(lèi)可以繼承,這樣子類(lèi)的信息就不保密了。

parent 調(diào)用父類(lèi)被覆寫(xiě)的方法

parent 關(guān)鍵字可以在任何覆寫(xiě)父類(lèi)的方法中使用。覆寫(xiě)一個(gè)父類(lèi)的方法時(shí),我們并不希望刪除父類(lèi)的功能,而是拓展它,通過(guò)在當(dāng)前對(duì)象中調(diào)用父類(lèi)的方法可以達(dá)到這個(gè)目的。

看看上面的代碼,可以發(fā)現(xiàn)兩個(gè)子類(lèi)中 getSummaryLine() 方法中重復(fù)了許多代碼,我們應(yīng)該利用 ShopProduct 類(lèi)中已經(jīng)存在的功能,而不是重復(fù)開(kāi)發(fā):

代碼如下:

// 父類(lèi):ShopProduct

function getSummaryLine(){

$base = "{$this->title}( {$this->producerMainName},";

$base .= "{$this->producerFirstName} )";

return $base;

}

// 子類(lèi):CdProduct

function getSummaryLine(){

$base = parent::getSummaryLine();

$base .= ":playing time - {$this->playLength} )";

return $base;

}

// 子類(lèi):BookProduct

function getSummaryLine(){

$base = parent::getSummaryLine();

$base .= ":page cont - {$this->numPages} )";

return $base;

}

我們?cè)诟割?lèi) ShopProduct 中為 getSummaryLine() 方法完成了”核心“功能,接著在子類(lèi)中簡(jiǎn)單的調(diào)用父類(lèi)的方法,然后增加更多數(shù)據(jù)到摘要字符串,方法的拓展就實(shí)現(xiàn)了。

希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢(xún) | 簡(jiǎn)要咨詢(xún)須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話(huà):0871-65099533/13759567129 獲取招聘考試信息及咨詢(xún)關(guān)注公眾號(hào):hfpxwx
咨詢(xún)QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)