《PHP學習:php實現parent調用父類的構造方法與被覆寫的方法》要點:
本文介紹了PHP學習:php實現parent調用父類的構造方法與被覆寫的方法,希望對您有用。如果有疑問,可以聯系我們。
本文實例講述了php實現parent調用父類的構造辦法與被覆寫的辦法.分享給大家供大家參考.具體分析如下:PHP實戰
覆寫:被重新設計.PHP實戰
在子類中定義構造辦法時,需要傳遞參數給父類的構造辦法,否則我們得到的可能是一個構造不完整的對象.PHP實戰
要調用父類的辦法,首先要找到一個引用類本身的途徑:句柄(handle),PHP為此提供了parent關鍵字.
?
parent 調用父類的構造辦法PHP實戰
要引用一個類而不是對象的辦法,可以使用 ::(兩個冒號),而不是 ->.PHP實戰
所以, parent::__construct() 以為著調用父類的 __construct() 辦法.PHP實戰
修改上篇《使用類繼承解決代碼重復等問題》中的代碼,讓每個類只處理自己的數據:
PHP實戰
代碼如下:
<?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 調用父類被覆寫的辦法PHP實戰
parent 關鍵字可以在任何覆寫父類的辦法中使用.覆寫一個父類的辦法時,我們并不希望刪除父類的功能,而是拓展它,通過在當前對象中調用父類的辦法可以達到這個目的.
看看上面的代碼,可以發現兩個子類中 getSummaryLine() 辦法中重復了許多代碼,我們應該利用 ShopProduct 類中已經存在的功能,而不是重復開發:
PHP實戰
代碼如下:
// 父類: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;
}
?
我們在父類 ShopProduct 中為 getSummaryLine() 辦法完成了”核心“功能,接著在子類中簡單的調用父類的辦法,然后增加更多數據到摘要字符串,辦法的拓展就實現了.
希望本文所述對大家的php程序設計有所幫助.PHP實戰
《PHP學習:php實現parent調用父類的構造方法與被覆寫的方法》是否對您有啟發,歡迎查看更多與《PHP學習:php實現parent調用父類的構造方法與被覆寫的方法》相關教程,學精學透。維易PHP學院為您提供精彩教程。
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/12260.html