📄 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 + -