📄 statictester.java
字号:
public class StaticTester
{ public static void main(String args[])
{ StaticTest.y += 1;
StaticTest t1 = new StaticTest();
StaticTest t2 = new StaticTest();
t1.x += 1;
t1.y += 1;
t2.x += 2;
t2.y += 2;
System.out.println("T1: x = " + t1.x + ", y = " + t1.y);
System.out.println("T2: x = " + t2.x + ", y = " + t2.y);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -