中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在php中調用父類構造方法

發布時間:2020-07-15 13:48:13 來源:億速云 閱讀:157 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關如何在php中調用父類構造方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

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

php調用父類構造方法:

使用parent調用父類的構造方法

要引用一個類而不是對象的方法,可以使用 ::(兩個冒號),而不是 ->

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

具體代碼如下:

<?php
header('Content-type:text/html;charset=utf-8');
// 從這篇開始,類名首字母一律大寫,規范寫法
class ShopProduct{    // 聲明類
public $title; // 聲明屬性
public $producerMainName;
public $producerFirstName;
public $price;
function __construct($title,$firstName,$mainName,$price){
$this -> title = $title;    // 給屬性 title 賦傳進來的值
$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;
}
}
 
?>

每個子類都會在設置自己的屬性前調用父類的構造方法。基類(父類)現在僅知道自己的數據,而我們也應該盡量避免告訴父類任何關于子類的信息,這是一條經驗規則,大家想想如果某個子類的信息應該是”保密“的,結果父類知道它的信息,其它子類可以繼承,這樣子類的信息就不保密了。


關于如何在php中調用父類構造方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新建县| 保山市| 周口市| 鲁山县| 石门县| 张家港市| 资讯| 清原| 上栗县| 滦南县| 南阳市| 葫芦岛市| 东丽区| 汝城县| 科技| 忻城县| 加查县| 潞城市| 城口县| 泾川县| 陵川县| 扎鲁特旗| 华宁县| 师宗县| 庆阳市| 垫江县| 晋宁县| 兰考县| 句容市| 如东县| 建德市| 前郭尔| 阳朔县| 宁陵县| 双鸭山市| 太保市| 毕节市| 浙江省| 拉萨市| 图们市| 平陆县|