php5类中三种数据类型的区别
Freigeben: 2016-07-25 09:11:05
Original
977 Leute haben es durchsucht
-
-
/**
- * parent 只能调用父类中的公有或受保护的方法,不能调用父类中的属性
- * self 可以调用父类中除私有类型的方法和属性外的所有数据
- */
- class User{
- public $name;
- private $passwd;
- protected $email;
- public function __construct(){
- //print __CLASS__." ";
- $this->name= 'simple';
- $this->passwd='123456';
- $this->email = 'test123@163.com';
- }
- public function show(){
- print "good ";
- }
- public function inUserClassPublic() {
- print __CLASS__.'::'.__FUNCTION__." ";
- }
- protected function inUserClassProtected(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
- private function inUserClassPrivate(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
- }
class simpleUser extends User {
- public function __construct(){
- //print __CLASS__." ";
- parent::__construct();
- }
-
- public function show(){
- print $this->name."//public ";
- print $this->passwd."//private ";
- print $this->email."//protected ";
- }
-
- public function inSimpleUserClassPublic() {
- print __CLASS__.'::'.__FUNCTION__." ";
- }
-
- protected function inSimpleUserClassProtected(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
-
- private function inSimpleUserClassPrivate() {
- print __CLASS__.'::'.__FUNCTION__." ";
- }
- }
class adminUser extends simpleUser {
- protected $admin_user;
- public function __construct(){
- //print __CLASS__." ";
- parent::__construct();
- }
-
- public function inAdminUserClassPublic(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
-
- protected function inAdminUserClassProtected(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
-
- private function inAdminUserClassPrivate(){
- print __CLASS__.'::'.__FUNCTION__." ";
- }
- }
class administrator extends adminUser {
- public function __construct(){
- parent::__construct();
- }
- }
/**
- * 在类的实例中 只有公有属性和方法才可以通过实例化来调用
- */
- $s = new administrator();
- print '-------------------';
- $s->show();
- ?>
-
复制代码
|
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31