?? protection.java
字號:
package p1;
public class Protection{
int n=0;
private int n_pri=2;
protected int n_pro=3;
public int n_pub=4;
public Protection(){
System.out.println("base constructor");
System.out.println("n="+n);
System.out.println("n_pro="+n_pro);
System.out.println("n_pri="+n_pri);
System.out.println("n_pub="+n_pub);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -