?? example4.java
字號:
class tom2{
final int max=100;
static final int min=20;
}
public class example4{
public static void main(String args[]){
System.out.println(tom2.min);
tom2 tom=new tom2();
int x=0;
x=tom.max+tom2.min;
System.out.println(x);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -