博客列表 >11月27号作业,类和对像

11月27号作业,类和对像

遗忘了寂寞
遗忘了寂寞原创
2019年11月27日 14:46:53495浏览

命名空间namespace 创建类 class

  1. <?php
  2. //命名空间
  3. namespace my\name;
  4. //创建类
  5. class a{
  6. public $name = '张三';
  7. public $age =18;
  8. public function get(){
  9. echo $this->name . '在吃饭';
  10. }
  11. }
  12. //实例化类:
  13. $obj= new \my\name\a;
  14. $obj->get();

成员变量、成员方法

  1. <?php
  2. // 成员变量、成员方法
  3. class spObj{
  4. public $name;
  5. public $height;
  6. public $avo;
  7. public function bootFootBall($name,$height,$avo){
  8. $this->name=$name;
  9. $this->height=$height;
  10. $this->avo=$avo;
  11. if($this->height<185 and $this->avo <85){
  12. return $this->name .';符合踢足球的要求!';
  13. }else{
  14. return $this->name .';不符合踢足球的要求!';
  15. }
  16. }
  17. }
  18. $obj=new spObj();
  19. echo $obj->bootFootBall('张三','185','80');

构造方法

  1. <?php
  2. // 构造方法
  3. class spObj{
  4. public $name;
  5. public $height;
  6. public function __construct($name,$height){
  7. $this->name=$name;
  8. $this->height=$height;
  9. }
  10. public function shuchu(){
  11. echo $this->name . '的身高是' . $this->height ;
  12. }
  13. }
  14. $spObj=new spObj('张三','185');
  15. $spObj->shuchu();



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