程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php的public、protected、private三種訪問控制模式的區別,protectedprivate

php的public、protected、private三種訪問控制模式的區別,protectedprivate

編輯:關於PHP編程

php的public、protected、private三種訪問控制模式的區別,protectedprivate


php的public、protected、private三種訪問控制模式的區別  

 

public: 公有類型

        在子類中可以通過self::var調用public方法或屬性,parent::method調用父類方法

 

    在實例中可以能過$obj->var 來調用 public類型的方法或屬性

protected: 受保護類型
        在子類中可以通過self::var調用protected方法或屬性,parent::method調用父類方法

        在實例中不能通過$obj->var 來調用  protected類型的方法或屬性

private: 私有類型
 該類型的屬性或方法只能在該類中使用,在該類的實例、子類中、子類的實例中都不能調用私有類型的屬性和方法


2.self 和 parent 的區別
  a).在子類中常用到這兩個對像。他們的主要區別在於self可以調用父類中的公有或受保護的屬性,但parent不可以調用

  b).self:: 它表示當前類的靜態成員(方法和屬性) 與 $this 不同,$this是指當前對像

附代碼:

<?php
/**
 * parent 只能調用父類中的公有或受保護的方法,不能調用父類中的屬性
 * self  可以調用父類中除私有類型的方法和屬性外的所有數據
 */
class User{
    public $name;
    private $passwd;
    protected $email;    
    public  function __construct(){
        //print __CLASS__." ";
        $this->name= 'simple';
        $this->passwd='123456';
        $this->email = '[email protected]';
    }    
    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();
?>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved