程序很简单:
public class User {
static User u=new User();
public static User getUser(){
return u;
}
User01 u01=User01.getUser01();
public User(){
System.out.println("User新建一次");
}
}
public class User01 {
static User01 u01=new User01();
public static User01 getUser01(){
return u01;
}
User u=User.getUser();
public User01(){
System.out.println("User01新建一次");
}
}
public class Test {
public static void main(String[] args) {
User u=User.getUser();
User01 u01=User01.getUser01();
System.out.println(u.u01);
System.out.println(u01.u);
}
}
接着我运行test的main函数,得到结果如下:
User01新建一次
User新建一次
User01@40ac8360
null
为什么会有这个结果?为什么没有循环地一直初始化下去呢?为什么最后的u01.u是空指针呢?跪求大神解释一下整个程序运行过程中到底发生了什么!