> php教程 > php手册 > 본문

php (十三) 面向对象 封装

WBOY
풀어 주다: 2016-06-21 08:48:43
원래의
1022명이 탐색했습니다.

面向对象的封装性:

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.&#39;<br>&#39;;  
}  
function __destruct(){  
echo $this->name.",再见"."<br>";  
}  
}  
$p1=new Person("rayhooo",26,"male");  
$p1->say();  
echo $p1->getPro("name").&#39;<br>&#39;;  
$p1->setAge(45);  
echo $p1->getAge().&#39;<br>&#39;;  
로그인 후 복사

 

 



관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!