?? abc.java~34~
字號:
// 5-26 包應用package test;public class ABC{ protected int x=5; public int y=6; // y 是公共變量,在其他包中也可以訪問! public void showx() { System.out.println("Test.ABC.x="+x); } public void showxx() { System.out.println("D.x="+x); } void showxxx() { System.out.println("super.x="+x); } void showy() { // 不是 public 方法 ,在其他包中不能被訪問! System.out.println("Test.ABC.y="+y); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -