php重载父类,php对象之父类子类方法重载

实例

/**

* Created by PhpStorm.

* User: Administrator

* Date: 2018/5/4 0004

* Time: 上午 10:11

*/

class Dog

{

protected $color='';

protected $kind='';

public function __construct($color,$kind)

{

$this->color ? : null;

$this->kind ?: null;

}

public function Eat(){

return "能吃";

}

}

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

/**

* Created by PhpStorm.

* User: Administrator

* Date: 2018/5/4 0004

* Time: 上午 10:13

*/

class TaiDi extends Dog

{

public $name;

public function __construct($color = '', $kind = '', $name = '')

{

parent::__construct($color, $kind);

$this->name ?: null;

}

/**

* @return mixed

*/

public function getColor()

{

return $this->color;

}

/**

* @param mixed $color

*/

public function setColor($color)

{

$this->color = $color;

}

/**

* @return mixed

*/

public function getKind()

{

return $this->kind;

}

/**

* @param mixed $kind

*/

public function setKind($kind)

{

$this->kind = $kind;

}

/**

* @return string

*/

public function getName()

{

return $this->name;

}

/**

* @param string $name

*/

public function setName($name)

{

$this->name = $name;

}

public function Eat()

{

return parent::Eat() . " 啤酒、饮料、小龙虾"; // TODO: Change the autogenerated stub

}

}

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

/**

* Created by PhpStorm.

* User: Administrator

* Date: 2018/5/4 0004

* Time: 上午 9:56

*/

header("content-type:text/html;charset=utf-8");

spl_autoload_register(function ($class) {

include 'class/' . $class . '.php';

});

$taidi = new TaiDi();

$taidi->setName("小宝");

$taidi->setKind("迷你贵宾");

$taidi->setColor("棕色");

echo '昵称:'.$taidi->getName().'
 品种:'.$taidi->getKind().'
 颜色:'.$taidi->getColor().'
 '.$taidi->Eat();

运行实例 »

点击 "运行实例" 按钮查看在线实例

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值