首页 > 代码库 > PHP--继承
PHP--继承
继承使用关键字:extends
PHP是单继承,有且只有一个父类
PHP的构造函数可以被继承,但是如果子类也定义了构造函数,则父类的被覆盖
子类中将父类的函数进行重新的定义,叫重写
parent 关键字,本意为父母,当前在子类中指代当前类的父类的对象,
使用它可以调用被覆盖了的父类的属性和行为
class Animal{
public $name;
public $sex;
public $age;
public function __construct($name)
{
$this->name = $name;
}
public function shout(){
echo ‘动物都有各自的叫声‘;
}
public function desc(){
}
}
class Dog extends Animal{
// public function __construct($name)
// {
// $this->name = $name;
// }
/**
* 子类中将父类的函数进行重新的定义,叫重写
*/
public function shout(){
echo ‘,狗狗的叫声:汪~~汪~~汪~‘;
}
public function desc(){
echo ‘狗狗的名字:‘.$this->name;
// parent::shout();
$this->shout();
}
}
class Cat extends Animal{
// public function __construct($name)
// {
// $this->name = $name;
// }
public function shout(){
echo ‘,猫咪的叫声:喵~~呜~喵~~呜~‘;
}
public function desc(){
echo ‘喵咪的名字:‘.$this->name;
$this->shout();
}
}
$animal = new Dog(‘来福‘);
$animal->desc();
echo ‘<br><br>‘;
$animal = new Cat(‘咪咪‘);
$animal->desc();
PHP--继承
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。