Java學習筆記10---訪問許可權修飾符如何控製成員變數、成員方法及類的訪問範圍

来源:http://www.cnblogs.com/chanchan/archive/2017/10/30/7752373.html
-Advertisement-
Play Games

1.Java有三種訪問許可權修飾符,分別為public、protected、private,還有一種為預設許可權修飾符的情況,記為default。其中,可以由public和default來修飾類;這四種修飾符都可以修飾成員變數和成員方法。每一種修飾符對應不同的訪問範圍,下麵以下圖為例詳細說明。 圖1 p ...


1.Java有三種訪問許可權修飾符,分別為public、protected、private,還有一種為預設許可權修飾符的情況,記為default。其中,可以由public和default來修飾類;這四種修飾符都可以修飾成員變數和成員方法。每一種修飾符對應不同的訪問範圍,下麵以下圖為例詳細說明。

圖1

  • private只可以覆蓋圓1,即只有本類可以訪問;
  • default可以覆蓋到圓3,即本類、同包子類、同包其他類都可以訪問,簡單說就是與本類同包的所有類都可以訪問;
  • protected可以覆蓋到圓4,即本類、同包子類、同包其他類、其他包中的子類都可以訪問,簡單說就是與本類同包的類及其他包中的子類都可以訪問;
  • public可以覆蓋到圓5,即本類、同包子類、同包其他類、其他包子類、其他包其他類都可以訪問,簡單說就是所有類都可以訪問;

註:在與父類不同包的子類中,如果通過子類對象訪問和調用父類中由protected修飾的變數和方法,確實可以;但如果通過父類的對象訪問和調用的話,則不可以訪問protected修飾的變數和方法,具體見下文的(6)和(7)。具體原因還未瞭解。

 

2.下麵以簡單的程式驗證上述結論。

前提:

  • 包human中定義了類Person,Student,DustMan;其中,Student是Person的子類,DustMan不是Person的子類。
  • 包teacher中定義了類Teacher,GateMan;其中,Teacher是Person的子類,GateMan不是Person的子類。
  • Person中定義了四個成員變數和四個成員方法,分別以public,protected,預設,private修飾,詳見下麵代碼:
        String name;
public String education; private String hobby; protected String residence; public void testModifierPublic() { System.out.println("Public"); } protected void testModifierProtected() { System.out.println("Protected"); } void testModifierDefault() { System.out.println("Default"); } private void testModifierPrivate() { System.out.println("Private"); }

  

(1),在Person類中定義Person類對象pOwn,分別訪問和調用這些成員變數和成員方法,詳見下麵的代碼:

	public static void main(String[] args) {
		Person pOwn = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + pOwn.education);
		System.out.println("protected residence: " + pOwn.residence);
		System.out.println("default name: " + pOwn.name);
		System.out.println("private hobby: "+ pOwn.hobby);
		pOwn.testModifierPublic();
		pOwn.testModifierProtected();
		pOwn.testModifierDefault();
		pOwn.testModifierPrivate();
	}

輸出結果為:

public education: bachelor
protected residence: NJ
default name: xi
private hobby: recite
Public
Protected
Default
Private

結果分析:Person類對象可以在本類中訪問和調用由public、protected、default、private修飾的成員變數和成員方法。

 

(2).在Student類中分別定義Student類對象sSamePackChild和Person類對象pSamePackChild,並分別訪問和調用這些成員變數和成員方法,詳見下麵的代碼:

	public static void main(String[] args) {	
		Student sSamePackChild = new Student("xi",20,"female","bachelor","recite","NJ");
		Person pSamePackChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + sSamePackChild.education);
		System.out.println("protected residence: " + sSamePackChild.residence);
		System.out.println("default name: " + sSamePackChild.name);
		System.out.println("private hobby: "+ sSamePackChild.hobby);
		sSamePackChild.testModifierPublic();
		sSamePackChild.testModifierProtected();
		sSamePackChild.testModifierDefault();
		sSamePackChild.testModifierPrivate();
		
		System.out.println("public education: " + pSamePackChild.education);
		System.out.println("protected residence: " + pSamePackChild.residence);
		System.out.println("default name: " + pSamePackChild.name);
		System.out.println("private hobby: "+ pSamePackChild.hobby);
		pSamePackChild.testModifierPublic();
		pSamePackChild.testModifierProtected();
		pSamePackChild.testModifierDefault();
		pSamePackChild.testModifierPrivate();
	}

輸出結果為:

        Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
	The field Person.hobby is not visible
	The method testModifierPrivate() from the type Person is not visible
	The field Person.hobby is not visible
	The method testModifierPrivate() from the type Person is not visible

	at human.Student.main(Student.java:108)
    

結果分析:出現編譯錯誤,提示private修飾的hobby和testModifierPrivate()不可見。

 

(3).根據(2)提示的錯誤,註釋掉相關的行,再次執行,詳見代碼:

	public static void main(String[] args) {	
		Student sSamePackChild = new Student("xi",20,"female","bachelor","recite","NJ");
		Person pSamePackChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + sSamePackChild.education);
		System.out.println("protected residence: " + sSamePackChild.residence);
		System.out.println("default name: " + sSamePackChild.name);
//		System.out.println("private hobby: "+ sSamePackChild.hobby);
		sSamePackChild.testModifierPublic();
		sSamePackChild.testModifierProtected();
		sSamePackChild.testModifierDefault();
//		sSamePackChild.testModifierPrivate();
		
		System.out.println("public education: " + pSamePackChild.education);
		System.out.println("protected residence: " + pSamePackChild.residence);
		System.out.println("default name: " + pSamePackChild.name);
//		System.out.println("private hobby: "+ pSamePackChild.hobby);
		pSamePackChild.testModifierPublic();
		pSamePackChild.testModifierProtected();
		pSamePackChild.testModifierDefault();
//		pSamePackChild.testModifierPrivate();
	}

輸出結果為:

public education: bachelor
protected residence: NJ
default name: xi
Public
Protected
Default
public education: bachelor
protected residence: NJ
default name: xi
Public
Protected
Default

結果分析:

註釋掉private修飾的行後,成功執行;

Person類對象可以在與父類同包的子類Student中訪問和調用由public、protected、default修飾的成員變數和成員方法,不能訪問由private修飾的變數和方法;

在子類中定義的Student類對象也擁有同樣的訪問許可權。

 

(4).在DustMan類中定義Person類對象pSamePackNonChild,分別訪問和調用這些成員變數和成員方法,詳見下麵的代碼:

package human;

public class DustMan {
	public static void main(String[] args) {
		Person pSamePackNonChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + pSamePackNonChild.education);
		System.out.println("protected residence: " + pSamePackNonChild.residence);
		System.out.println("default name: " + pSamePackNonChild.name);
		System.out.println("private hobby: "+ pSamePackNonChild.hobby);
		pSamePackNonChild.testModifierPublic();
		pSamePackNonChild.testModifierProtected();
		pSamePackNonChild.testModifierDefault();
		pSamePackNonChild.testModifierPrivate();
	}
}

輸出結果為:

        Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
	The field Person.hobby is not visible
	The method testModifierPrivate() from the type Person is not visible

	at human.DustMan.main(DustMan.java:19)

結果分析:出現編譯錯誤,提示private修飾的hobby和testModifierPrivate()不可見。

 

(5).根據(4)提示的錯誤,註釋掉相關的行,再次執行,詳見代碼:

package human;

public class DustMan {
	public static void main(String[] args) {		
		Person pSamePackNonChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + pSamePackNonChild.education);
		System.out.println("protected residence: " + pSamePackNonChild.residence);
		System.out.println("default name: " + pSamePackNonChild.name);
//		System.out.println("private hobby: "+ pSamePackNonChild.hobby);
		pSamePackNonChild.testModifierPublic();
		pSamePackNonChild.testModifierProtected();
		pSamePackNonChild.testModifierDefault();
//		pSamePackNonChild.testModifierPrivate();
	}
}

輸出結果為:

public education: bachelor
protected residence: NJ
default name: xi
Public
Protected
Default

結果分析:

註釋掉private修飾的行後,成功執行;

Person類對象可以在與Person同包的非子類中訪問和調用由public、protected、default修飾的成員變數和成員方法,不能訪問由private修飾的變數和方法。

 

(6).在Teacher類中定義Teacher類對象tDiffPackChild和Person類對象pDiffPackChild,並分別訪問和調用這些成員變數和成員方法,詳見下麵的代碼:

package teacher;
import human.Person;

public class Teacher extends human.Person {
	String duty;
	
	public Teacher() {
		
	}
	
	public Teacher(String d) {
		super();
		this.duty = d;
	}
	
	public Teacher(String n, int a, String g, String e, String h, String r) {
		super(n,a,g,e,h,r);
	}
	
	public static void main(String[] args) {
		Teacher tDiffPackChild = new Teacher("xi",20,"female","bachelor","recite","NJ");
		Person pDiffPackChild = new Person("xi",20,"female","bachelor","recite","NJ");

		System.out.println("public education: " + tDiffPackChild.education);
		System.out.println("protected residence: " + tDiffPackChild.residence);
		System.out.println("default name: " + tDiffPackChild.name);
		System.out.println("private hobby: "+ tDiffPackChild.hobby);
		tDiffPackChild.testModifierPublic();
		tDiffPackChild.testModifierProtected();
		tDiffPackChild.testModifierDefault();
		tDiffPackChild.testModifierPrivate();
		
		System.out.println("public education: " + pDiffPackChild.education);
		System.out.println("protected residence: " + pDiffPackChild.residence);
		System.out.println("default name: " + pDiffPackChild.name);
		System.out.println("private hobby: "+ pDiffPackChild.hobby);
		pDiffPackChild.testModifierPublic();
		pDiffPackChild.testModifierProtected();
		pDiffPackChild.testModifierDefault();
		pDiffPackChild.testModifierPrivate();
	}
}

輸出結果為:

        Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
	The field Person.name is not visible
	The field Person.hobby is not visible
	The method testModifierDefault() from the type Person is not visible
	The method testModifierPrivate() from the type Person is not visible
	The field Person.residence is not visible
	The field Person.name is not visible
	The field Person.hobby is not visible
	The method testModifierProtected() from the type Person is not visible
	The method testModifierDefault() from the type Person is not visible
	The method testModifierPrivate() from the type Person is not visible

	at teacher.Teacher.main(Teacher.java:39)

結果分析:

出現編譯錯誤,對於定義的Teacher類對象tDiffPackChild而言,對其的變數訪問和方法調用提示,default修飾的name和testModifierDefault()、private修飾的hobby和testModifierPrivate()不可見;

對於定義的Person類對象pDiffPackChild而言,對其的變數訪問和方法調用提示,protected修飾的residence和testModifierProtected()、default修飾的name和testModifierDefault()、private修飾的hobby和testModifierPrivate()不可見。

 

(7).根據(6)提示的錯誤,註釋掉相關的行,再次執行,詳見代碼:

package teacher;
import human.Person;

public class Teacher extends human.Person {
	String duty;
	
	public Teacher() {
		
	}
	
	public Teacher(String d) {
		super();
		this.duty = d;
	}
	
	public Teacher(String n, int a, String g, String e, String h, String r) {
		super(n,a,g,e,h,r);
	}
	
	public static void main(String[] args) {	
		Teacher tDiffPackChild = new Teacher("xi",20,"female","bachelor","recite","NJ");
		Person pDiffPackChild = new Person("xi",20,"female","bachelor","recite","NJ");

		System.out.println("public education: " + tDiffPackChild.education);
		System.out.println("protected residence: " + tDiffPackChild.residence);
//		System.out.println("default name: " + tDiffPackChild.name);
//		System.out.println("private hobby: "+ tDiffPackChild.hobby);
		tDiffPackChild.testModifierPublic();
		tDiffPackChild.testModifierProtected();
//		tDiffPackChild.testModifierDefault();
//		tDiffPackChild.testModifierPrivate();
		
		System.out.println("public education: " + pDiffPackChild.education);
//		System.out.println("protected residence: " + pDiffPackChild.residence);
//		System.out.println("default name: " + pDiffPackChild.name);
//		System.out.println("private hobby: "+ pDiffPackChild.hobby);
		pDiffPackChild.testModifierPublic();
//		pDiffPackChild.testModifierProtected();
//		pDiffPackChild.testModifierDefault();
//		pDiffPackChild.testModifierPrivate();
	}
}

輸出結果為:

public education: bachelor
protected residence: NJ
Public
Protected
public education: bachelor
Public

結果分析:

註釋掉相關的行後,成功執行;

如果在與Person不同包的子類Teacher中定義了Teacher類對象,則通過該對象可以訪問和調用Person中public和protected修飾的成員變數和成員方法,default、private修飾的成員變數和成員方法都不可以訪問或調用;

如果定義了Person類對象,則通過該對象只可以訪問和調用Person中public修飾的成員變數和成員方法,protected、default、private修飾的成員變數和成員方法都不可以訪問或調用。

疑問:不明白為什麼會有這樣的差異。

 

(8).在GateMan類中定義定義Person類對象pDiffPackNonChild,分別訪問和調用這些成員變數和成員方法,詳見下麵的代碼:

package teacher;

import human.Person;

public final class GateMan {
	int gateNumber;
	
	public GateMan() {
		
	}
	
	public GateMan(int g) {
		this.gateNumber = g;
	}
	
	public static void main(String[] args) {	
		Person pDiffPackNonChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + pDiffPackNonChild.education);
		System.out.println("protected residence: " + pDiffPackNonChild.residence);
		System.out.println("default name: " + pDiffPackNonChild.name);
		System.out.println("private hobby: "+ pDiffPackNonChild.hobby);
		pDiffPackNonChild.testModifierPublic();
		pDiffPackNonChild.testModifierProtected();
		pDiffPackNonChild.testModifierDefault();
		pDiffPackNonChild.testModifierPrivate();
	}
}

輸出結果為:

        Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
	The field Person.residence is not visible
	The field Person.name is not visible
	The field Person.hobby is not visible
	The method testModifierProtected() from the type Person is not visible
	The method testModifierDefault() from the type Person is not visible
	The method testModifierPrivate() from the type Person is not visible

	at teacher.GateMan.main(GateMan.java:29)

結果分析:出現編譯錯誤,提示protected修飾的residence和testModifierProtected()、default修飾的name和testModifierDefault()、private修飾的hobby和testModifierPrivate()不可見。

 

(9).根據(8)提示的錯誤,註釋掉相關的行,再次執行,詳見代碼:

package teacher;

import human.Person;

public final class GateMan {
	int gateNumber;
	
	public GateMan() {
		
	}
	
	public GateMan(int g) {
		this.gateNumber = g;
	}
	
	public static void main(String[] args) {		
		Person pDiffPackNonChild = new Person("xi",20,"female","bachelor","recite","NJ");
		
		System.out.println("public education: " + pDiffPackNonChild.education);
//		System.out.println("protected residence: " + pDiffPackNonChild.residence);
//		System.out.println("default name: " + pDiffPackNonChild.name);
//		System.out.println("private hobby: "+ pDiffPackNonChild.hobby);
		pDiffPackNonChild.testModifierPublic();
//		pDiffPackNonChild.testModifierProtected();
//		pDiffPackNonChild.testModifierDefault();
//		pDiffPackNonChild.testModifierPrivate();
	}
}

輸出結果為:

public education: bachelor
Public

結果分析:

註釋掉protected、default、private修飾的行後,成功執行;

Person類對象可以在與Person不同包的非子類中訪問和調用由public修飾的成員變數和成員方法,不能訪問由protected、default、private修飾的變數和方法。

 

(10).把Person類定義為預設訪問許可權修飾的類,即class Person{,,,,}。在teacher包里的Teacher類和GateMan類都出現編譯錯誤,如下所示:

        Exception in thread "main" java.lang.IllegalAccessError: class teacher.Teacher cannot access its superclass human.Person
	at java.lang.ClassLoader.defineClass1(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:763)
	at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
	at java.net.URLClassLoader.defineClass(URLClassLoader.java:467)
	at java.net.URLClassLoader.access$100(URLClassLoader.java:73)
	at java.net.URLClassLoader$1.run(URLClassLoader.java:368)
	at java.net.URLClassLoader$1.run(URLClassLoader.java:362)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:361)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
	at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:495)

結果分析:說明預設訪問許可權修飾符的類只能由本包中的類訪問,其他包中的類都不可以訪問。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前言 今天在掘金看到一篇關於講解的Spring框架的文章,文章提到了牛客網的面試題。於是乎我就下載了牛客網app,發現面試題目很豐富。我就挑了java方面的面試題做了一下。10個題目為一組面試題,做完後,我發現了自己錯了好多,大多數都是基礎題。俗話說:基礎的深度決定未來的高度。我感覺自己必須要做一個 ...
  • 公司自己塔建的半自動化代碼生成項目 用法: 把csv文件放到src/resources/csv下,運行GenMain.java,生成的代碼在target/output下。 對GenMain.java進行適當的修改,可以控制生成的代碼有哪些,Pojo,Dao,Srv,ISrv,Action,PageJ ...
  • yii2在使用的時候,訪問控制器的時候,如果控制器的名稱是駝峰命名法,那訪問的url中要改成橫線的形式。例如: 最近在做某渠道的直連的時候,他們提供的文檔上明確指出介面的形式: 剛開始以為YII2中肯定有這樣的設置,然後就去google了下,發現都說不行,自己去看了下,果然,框架裡面直接是寫死的:( ...
  • 主頁面代碼 處理頁面代碼 ...
  • 1、實現介面的抽象類——適配器 即用了介面,又用了抽象類,關鍵是Window win=new MyWindow(); MyWindow子類並沒有直接實現Window介面,而是通過中間的抽象類建立了橋梁 2、代理公司的方法——功能更強大的包裝類 自己要錢的能力太弱小,通過強大的代理來完成要錢,包裝類 ...
  • 本節內容 - C參數複製,返回值 - Go參數複製,返回值 - 優化模式對參數傳遞的影響 ...
  • Social Net ZOJ - 3649 題意: 反正原題題意我是看不懂... 參考:http://www.cnblogs.com/names-yc/p/4922867.html 給出一幅圖,求最大生成樹,輸出邊權之和,併在這棵樹上進行查詢操作:給出兩個結點編號x和y,求從x到y的路徑上,由每個結 ...
  • 1. 對於泛型類而言,你若沒有指明其類型,預設為Object; 2. 在繼承泛型類以及介面的時候可以指明泛型的類型,也可以不指明; 3. 泛型也資料庫中的應用: 寫一個 DAO 類對資料庫中的數據進行增刪改查其類型聲明為 <T> 。每張表對應一個類,對應每一張表實現一個類繼承該 DAO 類並指明 D ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...