php調(diào)用父類(lèi)構(gòu)造方法:使用parent調(diào)用父類(lèi)的構(gòu)造,用【::】引用一個(gè)類(lèi),代碼為【parent::__construct($title,$firstName,$mainName,$price)】。
創(chuàng)新互聯(lián)公司專(zhuān)注于淶水網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供淶水營(yíng)銷(xiāo)型網(wǎng)站建設(shè),淶水網(wǎng)站制作、淶水網(wǎng)頁(yè)設(shè)計(jì)、淶水網(wǎng)站官網(wǎng)定制、重慶小程序開(kāi)發(fā)服務(wù),打造淶水網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供淶水網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。
php調(diào)用父類(lèi)構(gòu)造方法:
使用parent
調(diào)用父類(lèi)的構(gòu)造方法
要引用一個(gè)類(lèi)而不是對(duì)象的方法,可以使用::
(兩個(gè)冒號(hào)),而不是->
。
所以,parent::__construct()
為著調(diào)用父類(lèi)的__construct()
方法。
具體代碼如下:
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)的信息就不保密了。