您好,登錄后才能下訂單哦!
這篇“php接口中的interface如何使用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“php接口中的interface如何使用”文章吧。
1、說明
接口中的方法都是抽象方法,并且是public。
2、接口同樣可以繼承接口,但是子類必須實(shí)現(xiàn)所有方法
interface E extends A { //接口E繼承接口A,E中必須實(shí)現(xiàn)A中所定義的方法 }
3、實(shí)現(xiàn)多重繼承:
我們都知道PHP中的類(class)是單繼承的,那是不是就沒有辦法實(shí)現(xiàn)多重繼承了呢?答案是否定的.我們可以通過其它特殊的方式實(shí)現(xiàn)類的多重 繼承,比如使用接口interface實(shí)現(xiàn),只要把類的特征抽象為接口,并通過實(shí)現(xiàn)接口的方式讓對(duì)象有多重身份,通過這樣就可以模擬多重繼承了。
下面是一個(gè)用接口(interface)實(shí)現(xiàn)多重繼承的例子,源代碼如下:
<?php interface UserInterface{ //定義User的接口 function getname(); } interface TeacherInterface{ //teacher相關(guān)接口 function getLengthOfService(); } class User implements UserInterface { //實(shí)現(xiàn)UserInterface接口 private $name = "tom"; public function getName(){ return $this->name; } } class Teacher implements TeacherInterface { //實(shí)現(xiàn)TeacherInterface接口 private $lengthOfService = 5; // 工齡 public function getLengthOfService(){ return $this->lengthOfService; } } // 繼承自User類,同時(shí)實(shí)現(xiàn)了TeacherInterface接口. class GraduateStudent extends User implements TeacherInterface { private $teacher ; public function __construct(){ $this->teacher = new Teacher(); } public function getLengthOfService(){ return $this->teacher->getLengthOfService(); } } class Act{ //注意這里的類型提示改成了接口類型 public static function getUserName(UserInterface $_user){ echo "Name is " . $_user->getName() ."<br>"; } //這里的類型提示改成了TeacherInterface類型. public static function getLengthOfService(TeacherInterface $_teacher){ echo "Age is " .$_teacher->getLengthOfService() ."<br>"; } } $graduateStudent = new GraduateStudent(); Act::getUserName($graduateStudent); Act::getLengthOfService($graduateStudent); //結(jié)果正如我們所要的,實(shí)現(xiàn)了有多重身份的一個(gè)對(duì)象. ?>
以上就是關(guān)于“php接口中的interface如何使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。