91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在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

定兴县| 京山县| 石河子市| 汨罗市| 安宁市| 南宁市| 什邡市| 新余市| 锡林郭勒盟| 竹山县| 丰镇市| 开封市| 台湾省| 秦皇岛市| 昌邑市| 仙居县| 蒲江县| 达日县| 丹阳市| 永新县| 德化县| 封丘县| 武夷山市| 尤溪县| 汶上县| 枞阳县| 长春市| 花莲市| 西乡县| 潮州市| 滦平县| 保山市| 萝北县| 隆昌县| 托克托县| 高清| 保康县| 华阴市| 开化县| 四川省| 伽师县|