标签:name new ted const bsp .class blog protected public
在php中,我们常常会定义许多类,当多个类里面的方法或者属性出现重复的时候,会常常造成代码重复和冗杂的弊端,这个时候,我们可以用到继承(extends)
继承的特性:
* 1.子类可以扩充属性
* 2.子类可以扩充方法
* 3.子类去调用一个方法的时候。先去本类找,如果本类有方法,则调用本类的方法。如果本类没有该方法,则去父类去找 * 4.继承需要有 is...a 的关系
代码:我先定义一个名为Person的父类,然后让子类Student来继承;
class Person { protected $name; protected $age; public function say() { echo "{$this->name}今年{$this->age}岁了"; } }
include_once "Person.class.php"; class Student extends Person { public $score; function __construct($name,$age) { $this->name=$name; $this->age = $age; } public function show() { echo "{$this->name}考了{$this->score}"; } }
$stu = new Student("房明",18);
$stu->name = "房明";
$stu ->age = 18;
$stu->say();
标签:name new ted const bsp .class blog protected public
原文地址:http://www.cnblogs.com/mmykdbc/p/6647400.html