程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP5接口和PHP5抽象類的語法介紹

PHP5接口和PHP5抽象類的語法介紹

編輯:關於PHP編程

大家對具體PHP5抽象類的代碼如下:

  1. abstract class AbstractClass {     
  2.    abstract public function test();     
  3. }     
  4.     
  5. class ImplementedClass extends AbstractClass {     
  6.    public function test() {     
  7.        echo "ImplementedClass::test() called. ";     
  8.    }     
  9. }     
  10.     
  11. $o = new ImplementedClass;     
  12. $o->test();    

PHP 5也支持接口的概念,並為之引入了interface和implements關鍵字。和Java一樣,PHP 5使用接口也實現類似於“多重繼承”的效果。PHP5接口語法如下:

  1. interface displayable {     
  2.   function display();     
  3. }     
  4. interface printable {     
  5.   function doprint();     
  6. }     
  7.     
  8. class foo implements displayable,printable {     
  9.   function display() {     
  10.     // code     
  11.   }   function doprint() {     
  12.     // code     
  13.   }     
  14. }    

抽象類和PHP5接口的引入使PHP成了一個完全面向對象的語


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved