📄 teststaticoper.java
字号:
package cn.edu.csu.oo.staticoper;
public class TestStaticOper {
/**
* @param args
*/
/**
* @param args
*/
public static void main(String[] args) {
TestStatic ts1 = new TestStatic();
TestStatic ts2 = new TestStatic();
TestStatic ts3 = new TestStatic();
System.out.println(ts3.count);
System.out.println(TestStatic.count);
System.out.println(TestStatic.getTotalCount());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -