PHP中物件導向

來源:互聯網
上載者:User
本篇文章主要介紹php中的物件導向,感興趣的小夥伴瞭解下,希望對大家有所協助。

1.物件導向的基本概念


物件導向包括3部分:物件導向分析(Object Oriented Analysis,OOA),物件導向設計(Object Oriented Design,OOD)以及物件導向編程(Object Oriented Program),物件導向兩個重點概念是類和對象。

類:

類是變數與作用於這些變數的方法的集合。

對象:

對象是類進行執行個體化後的產物,是一個實體。

物件導向編程的三大特點

封裝性,繼承性,多態性。

2. 類與對象

定義類

/** * 定義類,繼承AnotherClass */ class MyClass extends AnotherClass {  function __construct(argument) { # code... } }

執行個體化類

 $user = new User("憤怒的小水滴", 16); echo $user->name."<br>".$user->age;
class Student extends User{    /* 建構函式 */    public function __construct($name, $age, $school)    {        parent::__construct($name, $age);    }    /* 解構函式 */    public function __destruct()    {        parent::__destruct();    }} $student = new Student("憤怒的小水滴", 16, 'hebei'); echo json_encode($student)."<br>";



變數聲明符可以是public、private、protected、static、final。

聯繫我們

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