博客列表 >php对象之父类子类方法重载

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

有点凉了
有点凉了原创
2018年05月04日 10:38:58787浏览

实例

<?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 "能吃";
    }
}

运行实例 »

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

实例

<?php
/**
 * 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
    }
}

运行实例 »

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

实例

<?php
/**
 * 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().'<br> 品种:'.$taidi->getKind().'<br> 颜色:'.$taidi->getColor().'<br> '.$taidi->Eat();

运行实例 »

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


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议