PHP物件導向程式設計方法執行個體分析

來源:互聯網
上載者:User
這篇文章主要介紹了PHP物件導向程式設計方法,結合執行個體形式詳細分析了php物件導向程式設計中所涉及的類的概念、定義、建構函式、解構函式、繼承、重載、介面、抽象類別等概念與提示,需要的朋友可以參考下

具體如下:

PHP5開始支援物件導向,樣本如下:

<?phpclass classname{  var $attr1;  var $attr2;  public $attribute;  const PI = 3.14;  // 建構函式  function __construct($param = 'default'){    echo "Constructor called with parameter $param<br />";  }  // 解構函式  function __destruct(){    echo '<br />destruct';  }  //  function oper1(){    echo 'oper1<br />';  }  function oper2($param){    $this->attr1 = $param;    echo $this->attr1;  }  protected function oper3(){    echo 'this is protected function<br />';  }  // 禁止繼承  final function oper5(){  }  function __get($name){    return $this->$name;  }  function __set($name, $value){    $this->$name = $value;  }  // 靜態方法  static function double($param){    return $param * $param;  }}$a = new classname('First');$b = new classname('Second');$c = new classname();$c->oper2("hello");echo '<br />';echo $c->attr1;echo '<br /><br />';echo ' Per-Class常量 classname::PI -'.classname::PI;echo '<br />靜態方法: classname::double(3) - ' . classname::double(3);echo '<br />';// 實現繼承echo '實現繼承<br />';class B extends classname{  function oper4(){    $this->oper3(); // protected方法只能在  }  function oper1(){ // 重載    echo 'this is class B /'s oper1. <br />';  }}$d = new B("forth");$d->oper1();$d->oper4();// 介面interface Displayable{  function display();  function show();}class C implements Displayable{  function display(){    echo '這是對應介面的方法.<br />';  }  function show(){}}$e = new C();$e->display();echo '檢查$e是否為C的執行個體:';echo ($e instanceof C) ? 'Yes':'No';// 複製對象$f = clone $e;echo '<br /><br />可以使用__clone()方法,在使用clone關鍵字時調用';// 抽象類別abstract class E{}// $f = new E(); // 這行將報錯,不能執行個體化抽象類別// 參數重載,多態class F{  public $a = 1;  public $b = 2;  public $c = 3;  function displayString($elem){    echo '<br />string:'.$elem;  }  function displayInt($elem){    echo '<br />int:'.$elem;  }  // 注意參數$p,是作為數組傳入,必須使用下標訪問  function __call($method, $p){    if ($method == 'display'){      if (is_string($p[0])){        $this->displayString($p[0]);      } else {        $this->displayInt($p[0]);      }    }  }}$g = new F();$g->display('abc');// 迭代器,讀出執行個體的所有屬性foreach ($g as $att){  echo '<br />'.$att;}// 反射echo '<br />';$class = new ReflectionClass('F');echo '<pre>';echo $class;echo '</pre>';?>

以上就是本文的全部內容,希望對大家的學習有所協助。


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.