中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

php如何調(diào)用父類構(gòu)造方法?

php調(diào)用父類構(gòu)造方法:使用parent調(diào)用父類的構(gòu)造,用【::】引用一個(gè)類,代碼為【parent::__construct($title,$firstName,$mainName,$price)】。

創(chuàng)新互聯(lián)公司專注于淶水網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供淶水營(yíng)銷型網(wǎng)站建設(shè),淶水網(wǎng)站制作、淶水網(wǎng)頁(yè)設(shè)計(jì)、淶水網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)服務(wù),打造淶水網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供淶水網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。

php調(diào)用父類構(gòu)造方法:

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

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

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

具體代碼如下:

<?php
header('Content-type:text/html;charset=utf-8');
// 從這篇開始,類名首字母一律大寫,規(guī)范寫法
class ShopProduct{    // 聲明類
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;
}
}
// 定義類
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è)子類都會(huì)在設(shè)置自己的屬性前調(diào)用父類的構(gòu)造方法。基類(父類)現(xiàn)在僅知道自己的數(shù)據(jù),而我們也應(yīng)該盡量避免告訴父類任何關(guān)于子類的信息,這是一條經(jīng)驗(yàn)規(guī)則,大家想想如果某個(gè)子類的信息應(yīng)該是”保密“的,結(jié)果父類知道它的信息,其它子類可以繼承,這樣子類的信息就不保密了。

網(wǎng)站標(biāo)題:php如何調(diào)用父類構(gòu)造方法?
當(dāng)前地址:http://www.rwnh.cn/article6/cpoeog.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、小程序開發(fā)、網(wǎng)站改版、營(yíng)銷型網(wǎng)站建設(shè)網(wǎng)站內(nèi)鏈、用戶體驗(yàn)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
桓台县| 乐都县| 边坝县| 教育| 论坛| 宁乡县| 米易县| 大关县| 定远县| 阳山县| 云和县| 康马县| 乌鲁木齐县| 虹口区| 清涧县| 金寨县| 蒙自县| 西平县| 香河县| 雅安市| 新巴尔虎左旗| 新竹县| 镇远县| 洞口县| 砚山县| 鹿邑县| 洛川县| 诸城市| 达拉特旗| 双峰县| 石河子市| 格尔木市| 呼伦贝尔市| 碌曲县| 屏东县| 龙门县| 屏边| 平远县| 白山市| 沐川县| 巩留县|