PHP--继承
2021-06-20 00:04
标签:-- style nim 定义 一个 esc new 对象 dog 继承使用关键字:extends 子类中将父类的函数进行重新的定义,叫重写 parent 关键字,本意为父母,当前在子类中指代当前类的父类的对象, public $name; public function __construct($name) public function shout(){ public function desc(){ } // public function __construct($name) /** echo ‘,狗狗的叫声:汪~~汪~~汪~‘; public function desc(){ // public function __construct($name) public function shout(){ $animal = new Dog(‘来福‘); echo ‘ $animal = new Cat(‘咪咪‘); PHP--继承 标签:-- style nim 定义 一个 esc new 对象 dog 原文地址:http://www.cnblogs.com/hu48986/p/7191212.html
PHP是单继承,有且只有一个父类
PHP的构造函数可以被继承,但是如果子类也定义了构造函数,则父类的被覆盖
使用它可以调用被覆盖了的父类的属性和行为class Animal{
public $sex;
public $age;
{
$this->name = $name;
}
echo ‘动物都有各自的叫声‘;
}
}class Dog extends Animal{
// {
// $this->name = $name;
// }
* 子类中将父类的函数进行重新的定义,叫重写
*/
public function shout(){
}
echo ‘狗狗的名字:‘.$this->name;
// parent::shout();
$this->shout();
}
}class Cat extends Animal{
// {
// $this->name = $name;
// }
echo ‘,猫咪的叫声:喵~~呜~喵~~呜~‘;
}
public function desc(){
echo ‘喵咪的名字:‘.$this->name;
$this->shout();
}
}
$animal->desc();
‘;
$animal->desc();
上一篇:js数据类型
下一篇:Vue.js系列之项目搭建