📄 demostatic.java
字号:
public class DemoStatic
{
public static void main(String args[])
{
StaticEmployee s1 = new StaticEmployee("Bob", 1, "Saskatoon");
StaticEmployee s2 = new StaticEmployee("Chris", 2, " Regina");
System.out.println("Number of employees: " + s1.numEmployees);
StaticEmployee s3 = new StaticEmployee("George", 3, "North Battleford");
System.out.println("Number of employees: " + StaticEmployee.numEmployees);
s2 = null;
System.gc(); // force garbage collection to run
System.out.println("Number of employees: " + StaticEmployee.numEmployees);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -