博客列表 >父类与子类,

父类与子类,

其琛的博客
其琛的博客原创
2018年05月06日 21:13:06853浏览

引用代码:

<?php
spl_autoload_register(function($className){
    require './'.$className.'.php'; 
});
$two = new two('张三','18', '男',['打游戏','学习'],'学生');
$two = new two('李四','18', '男',['看电视','打球'],'学生');
echo '姓名: '.$two->names.'<br>'; 
echo '年龄: '.$two->sex.'<br>'; 
echo '性别: '.$two->age.'<br>';
echo '爱好:'.$two->grade.'<br>';
echo '工作:'.$two->room.'<br>';

echo $two->shenfen().'<br>'; 
echo $two->game().'<br>';

父类代码

<?php
class one
{
    protected $names;
    protected $sex;
    protected $age;
    public function __construct($names,$sex,$age)
    {
        $this->names = $name;
        $this->sex = $sex;
        $this->age = $age;
    }
    
    public function shenfen()
    {
        return '好学生';
    }
}

子类代码

<?php
class two extends one
{
    public function __get($name)
    {
        return $this->$name;
    }
    private $grade = true;
    private $rome = true; 
    public function __construct($names,$sex,$age,$grade,$rome)
    {
        parent::__construct($names,$sex,$age);
        
        $this->grade = $grade;
        $this->rome = $rome;
    }
    public function game()
    {
        return '玩游戏';
    }
    public function shenfen()
    {
        return parent::shenfen().',热爱学习';
    }
    
    
    
}

了解了子类与父类的关系,子类的功能是用来扩展或重载父类的某些功能,对父类属性进行扩展,增加新的特征

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