設計一個person類,條件以下:php
1)定義protected屬性:name(姓名)、age(年齡)、sex(性別)
2)定義static靜態屬性:num(用於計算已實例化的人數)
3)定義構造函數,實如今對象建立時輸出「I am a person」,並對num加1;
4)定義析構函數,在對象銷燬時輸出「bye」;
5)定義共有方法setInfo($info),經過參數設置name、age、sex等屬性信息
(提示:參數能夠爲數組,數組裏包含每一個參數的信息,如$info[name])
6)定義共有方法getInfo(),用於輸出對象的屬性信息
7)定義共有方法getNum(),用於計算並返回已實例化的人數數組
B、設計一個student類,條件以下:函數
1)繼承person類
2)定義構造函數,調用父類構造函數,並在輸出「I am a student」
3)定義私有屬性:number(學號)、class(班級)、major(專業)
4)重載父類的setInfo($info)方法,設置其爲final方法,調用父類的setInfo函數以設置共有的屬性信息,並繼續設置本類的屬性信息
5)重載父類的getInfo()方法,設置其爲final方法,調用父類的setInfo函數以輸出共有屬性信息,並繼續輸出本類的屬性信息this
C、設計一個teacher類,條件以下:設計
1)繼承自person類;
2)定義構造函數,調用父類構造函數,並在輸出「I am a teacher」
3)定義私有屬性:id(編號)、t_class(授課班級)、department(院系)
4)重載父類的setInfo($info)方法,設置其爲final方法,調用父類的setInfo函數以設置共有的屬性信息,並繼續設置本類的屬性信息
5)重載父類的getInfo()方法,設置其爲final方法,調用父類的setInfo函數以輸出共有屬性信息,並繼續輸出本類的屬性信息
D、實例化student類,調用setInfo()函數設置學生信息(以你我的的真實信息爲參考),而後調用getInfo()函數輸出信息
E、實例化teacher類,調用setInfo()函數設置學生信息(以你我的的真實信息爲參考),而後調用getInfo()函數輸出信息
F、調用person類的靜態方法getNum(),輸出已實例化的人員數量code
<?php class Person { protected $name, $age, $sex; //姓名,年齡,性別 public static $num; public function __construct($name = "", $age = "", $sex = "", $num = "") { echo "I am a person!<br>"; $this->name = $name; $this->age = $age; $this->sex = $sex; self::$num++; } public function __destruct() { echo "bye"; } public function setInfo($name, $age, $sex, $num) { $this->name = $name; $this->age = $age; $this->sex = $sex; $this->num = $num; } public function getInfo() { echo "姓名:" . $this->name . "<br>年齡:" . $this->age . "<br>性別:" . $this->sex . "<br>"; return self::$num; } public function getNum() { echo "<br>已實例化的人員數量是:" . self::$num . "<br>"; } } Person::$num = 0; class student extends Person { private $number, $clas, $major; //學號 班級 專業 public function __construct($number = "", $clas = "", $major = "") { $this->number = $number; $this->clas = $clas; $this->major = $major; echo "I am a student<br>"; } public final function setInfo($name, $age, $sex, $number, $clas, $major) { $this->name = $name; $this->age = $age; $this->sex = $sex; $this->number = $number; $this->clas = $clas; $this->major = $major; } public final function getInfo() { parent::getInfo(); echo "學號:" . $this->number . "<br>班級:" . $this->clas . "<br>專業:" . $this->major . "<br>"; } public function showNum() { echo parent::getNum(); } } class teacher extends Person { private $id, $t_class, $department; //工號 授課班級 院系 public function __construct($id = "", $t_class = "", $department = "") { $this->id = $id; $this->t_class = $t_class; $this->department = $department; echo "I am a teacher<br>"; } public final function setInfo($name, $age, $sex, $id, $t_class, $department) { // parent::setInfo(); $this->name = $name; $this->age = $age; $this->sex = $sex; $this->id = $id; $this->t_class = $t_class; $this->department = $department; } public final function getInfo() { parent::getInfo(); echo "編號:" . $this->id . "<br>授課班級:" . $this->t_class . "<br>院系:" . $this->department . "<br>"; // echo parent::getNum(); } public function showNum() { echo parent::getNum(); } } $s1 = new student(); $s1->setInfo("陳真", 22, "男", 20170521, "計科1701", "計算機科學與技術"); echo $s1->getInfo(); $t1 = new teacher(); $t1->setInfo("王獨秀", 26, "女", 1007, "計科170一、計科170二、計科170三、計科1704", "信息化學院"); echo $t1->getInfo(); $p1 = new Person(); $p2 = new Person(); $p3 = new Person(); Person::getNum();
I am a student 姓名:陳真 年齡:22 性別:男 學號:20170521 班級:計科1701 專業:計算機科學與技術 I am a teacher 姓名:王獨秀 年齡:26 性別:女 編號:1007 授課班級:計科170一、計科170二、計科170三、計科1704 院系:信息化學院 I am a person! I am a person! I am a person! 已實例化的人員數量是:3 byebyebyebyebye
注意
本案例可能並不是徹底解,只是經過我的在對案例的理解狀況下進行編寫,若有錯誤或者複製運行不對的狀況,懇請各位前輩可以指點一二,以便推進共同進步,謝謝!
對象