php (十三) 面向对象 封装

浏览:
字体:
发布时间:2013-12-09 23:24:01
来源:
面向对象的封装性:
1,就是把对象的成员(属性,方法)结合成一个独立的相同单位,并尽可能隐藏对象的内部细节
public protected
private 私有的,用这个关键字修饰的成员,只能在对象内部访问(只有用$this访问),不能在对象外部使用
 
示例:
 
class Person{  private $name;  private $age;  private $sex;  function __construct($name="",$age=20,$sex="male"){  $this->name=$name;  $this->age=$age;  $this->sex=$sex;  }  function getPro($name){  return $this->$name;  }  function setAge($age){  if($age>100||$age<0){  return;  }  $this->age=$age;  }  function getAge(){  if($this->age<30){  return $this->age;  }elseif($this->age<40){  return $this->age-5;  }elseif($this->age<50){  return $this->age-10;  }else{  return $this->age-15;  }  }  function say(){  echo "我的名字是:".$this->name.",年龄是:".$this->age.",性别是:".$this->sex.'<br>';  }  function __destruct(){  echo $this->name.",再见"."<br>";  }  }  $p1=new Person("rayhooo",26,"male");  $p1->say();  echo $p1->getPro("name").'<br>';  $p1->setAge(45);  echo $p1->getAge().'<br>';  

 

 
 
>更多相关文章
24小时热门资讯
24小时回复排行
资讯 | QQ | 安全 | 编程 | 数据库 | 系统 | 网络 | 考试 | 站长 | 关于东联 | 安全雇佣 | 搞笑视频大全 | 微信学院 | 视频课程 |
关于我们 | 联系我们 | 广告服务 | 免责申明 | 作品发布 | 网站地图 | 官方微博 | 技术培训
Copyright © 2007 - 2024 Vm888.Com. All Rights Reserved
粤公网安备 44060402001498号 粤ICP备19097316号 请遵循相关法律法规
');})();