我正在尝试运行以下代码示例,但收到StackOverflow错误。它似乎陷入了无限循环。任何人都可以帮助我知道这里发生了什么吗?
请在下面找到代码段
public class ConstructorExample {
private ConstructorExample c1 = new ConstructorExample();
public ConstructorExample(){
throw new RuntimeException();
}
public static void main(String[] str){
ConstructorExample c = new ConstructorExample();
}
}
答案 0 :(得分:2)
你有会员 private ConstructorExample c1 = new ConstructorExample(); 在ConstructorExample类中。
当您实例化ConstructorExample的第一个实例时,JVM为该ConstructorExample分配内存,然后尝试实例化第一个成员c1。此实例化从为另一个ConstructorExample实例分配内存开始,依此类推。
此外,运行时异常无关紧要,因为成员初始化程序在构造函数之前执行。
答案 1 :(得分:0)
正如预期的那样。从main方法尝试创建ConstructorExample
实例,在调用构造函数之前初始化实例变量。
private ConstructorExample c1 = new ConstructorExample();
然后再次重复循环并继续分配越来越多的内存导致stackoverflow,甚至没有完全创建单个实例。