博客列表 >2019.6.13作业

2019.6.13作业

关超的博客
关超的博客原创
2019年06月13日 22:52:15625浏览

6月13日作业

  1. 编写一个类,例如学生类,商品类, 体会private, protected, public的作用


class Student

{

    public $name; 

    public $age; 

    private $sex;    

     public function __construct($name, $age, $sex)

    {

        $this->name = $name;

        $this->age = $age;

        $this->sex= $sex;

    }


    public function getSex(){

        return $this->sex

    }

}


$student= new Student('chao','30','男');

echo $student->name, '<br>';

echo $student->age, '<br>';

echo $student->getSex();


  1.  实例演示类的继承环境中, 对封装成员访问的权限控制技术,要求用到protected, extends, 以及获取器方法



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