php物件導向繼承方面的幾點總結

來源:互聯網
上載者:User
本文主要總結幾點php物件導向繼承時的幾點:

//people.class.phpclass People{private $name;private $sex;private $birthday;private function construct($name='',$sex='01',$birthday='1999-01-01'){echo 'people---construct<br>';$this->name = $name;$this->sex = $sex;$this->birthday = $birthday;}public function get($key){return $this->$key;}public function set($value,$key){$this->$key = $value;}public function show(){return 'people---';}}
//student.class.phpclass Student extends People{private $s_num;private $s_class;public function construct($name,$sex,$birthday,$num,$class){//parent::construct($name,$sex,$birthday);echo 'Student--construct<br>';$this->name = $name;$this->sex = $sex;$this->birthday = $birthday;$this->s_num = $num;$this->s_class = $class;}public function showInfo(){return 'sutdent---'.$this->name.'----bir='.$this->birthday.'num=='.$this->s_num.'----class=='.$this->s_class;}}

以上兩個類Student繼承People類

父類的構造方法是私人的,這在java裡意味著這個類是無法被繼承的,但是在php裡,這個類可以被繼承,但是有一點,就是子類Student中無法調用父類的構造方法

parent::construct($name,$sex,$birthday);

否則會報出錯誤,並且,如果父類的構造方法私人,那麼子類就必須有自己的構造方法,必須明確寫出來,不然是無法實現繼承的。

同時和java不同的是,當子類繼承父類,並且子類有自己的建構函式的時候,父類的建構函式是不會被執行的,除非在子類的建構函式中調用。



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.