Blogger Information
Blog 42
fans 3
comment 2
visits 40730
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
子类重载父类并扩展父类的属性
虞者自愚的博客
Original
1069 people have browsed it

父类

实例

<?php

/**
 * 创建父类:KsInfo 考生基础信息
 */
class KsInfo
{
    protected $name;
    protected $age;
    protected $sex;
    protected $mobile;

    //构造方法
    public function __construct($name='',$age=0,$sex=0,$mobile=0)
    {
        $this->name = $name;
        $this->age = $age;
        $this->sex = $sex;
        $this->mobile = $mobile;
    }
}

运行实例 »

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


子类

实例

<?php

 // * 创建:考试成绩类: KaoShi

class KaoShi extends KsInfo
{



    //创建查询器,实现了外部访问 父类使用的protected 不能外部使用,子类需要public创建查询器
    public function __get($name)
    {
        return $this->$name;
    }

        //对父类属性进行扩展,增加新的特征
    private $fenshu = [95,91,92,95,94,98,96,90,92];  //各科分数
    private $zongfen = 843;  //总分
    private $pjf = 93.67;   //平均分

}

运行实例 »

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

运行代码

实例

<meta charset=utf-8>
<?php


//使用自动加载器来加载类
spl_autoload_register(function($className){
    require './class/'.$className.'.php';
});

$kaoshi = new Kaoshi('苏三',16,1,13888888888);
echo '姓名: ',$kaoshi->name,'<br>';
echo '年龄: ',$kaoshi->age, '<br>';
echo '性别:'.($kaoshi->sex?'男':'女').'<br>';
echo '手机: ',$kaoshi->mobile, '<br>';

echo '<hr>';
echo '下面是子类扩展的属性<br><br>';

echo '总分: ',$kaoshi->zongfen, '<br>';
echo '各科分数: ', print_r($kaoshi->fenshu,true), '<br>';
echo '平均分: ',$kaoshi->pjf, '<br>';


echo '<hr>';


$kaoshi = new KaoShi('李四',16,0,15666666666,846,[95,91,92,95,94,98,96,90,92],93.68);
echo '姓名: ',$kaoshi->name,'<br>';
echo '年龄: ',$kaoshi->age, '<br>';
echo '性别:'.($kaoshi->sex?'男':'女').'<br>';
echo '手机: ',$kaoshi->mobile, '<br>';
echo '总分: ',$kaoshi->zongfen, '<br>';
echo '各科分数: ', print_r($kaoshi->fenshu,true), '<br>';
echo '平均分: ',$kaoshi->pjf, '<br>';

运行实例 »

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

2.png

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post