最近遇到一个题目,也不知道这该下什么关键字来搜寻。
请问大家,为什么下面输出的结果是1及0而不是两者皆为1? 谢谢~
public class HelloWorld{
public static HelloWorld hw = new HelloWorld();
public static int a1;
public static int a2 = 0;
public HelloWorld(){
a1++;
a2++;
}
public static HelloWorld getInstance() { return hw; }
public static void main(String []args){
HelloWorld obj = HelloWorld.getInstance();
System.out.println(obj.a1);
System.out.println(obj.a2);
}
}