亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在php中利用parent調用父類的構造方法

發布時間:2021-01-25 16:45:06 來源:億速云 閱讀:160 作者:Leah 欄目:開發技術

怎么在php中利用parent調用父類的構造方法?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

具體分析如下:

覆寫:被重新設計。

在子類中定義構造方法時,需要傳遞參數給父類的構造方法,否則我們得到的可能是一個構造不完整的對象。

要調用父類的方法,首先要找到一個引用類本身的途徑:句柄(handle),PHP為此提供了parent關鍵字。
 
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;
}
}
 
?>


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

parent 調用父類被覆寫的方法

parent 關鍵字可以在任何覆寫父類的方法中使用。覆寫一個父類的方法時,我們并不希望刪除父類的功能,而是拓展它,通過在當前對象中調用父類的方法可以達到這個目的。
  看看上面的代碼,可以發現兩個子類中 getSummaryLine() 方法中重復了許多代碼,我們應該利用 ShopProduct 類中已經存在的功能,而不是重復開發:

復制代碼 代碼如下:

// 父類:ShopProduct
function getSummaryLine(){
$base = "{$this->title}( {$this->producerMainName},";
$base .= "{$this->producerFirstName} )";
return $base;
}
// 子類:CdProduct
function getSummaryLine(){
$base = parent::getSummaryLine();
$base .= ":playing time - {$this->playLength} )";
return $base;
}
// 子類:BookProduct
function getSummaryLine(){
$base = parent::getSummaryLine();
$base .= ":page cont - {$this->numPages} )";
return $base;
}


看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

磐安县| 定日县| 富蕴县| 清原| 道孚县| 疏附县| 来宾市| 陆川县| 讷河市| 靖远县| 大埔县| 靖州| 凌云县| 怀柔区| 平南县| 若羌县| 临沭县| 桑日县| 克拉玛依市| 扎赉特旗| 汉寿县| 娱乐| 汾西县| 芜湖县| 巴中市| 清镇市| 庆城县| 白河县| 桂平市| 马鞍山市| 青岛市| 平阴县| 宿松县| 长海县| 奇台县| 富宁县| 西峡县| 尉氏县| 新巴尔虎右旗| 临安市| 聂拉木县|