我试图运行以下代码示例,但出现 StackOverflow 错误。它似乎陷入了无限循环。任何人都可以帮助我知道这里发生了什么吗?
请在下面找到代码片段
public class ConstructorExample {
private ConstructorExample c1 = new ConstructorExample();
public ConstructorExample(){
throw new RuntimeException();
}
public static void main(String[] str){
ConstructorExample c = new ConstructorExample();
}
}