以下のコード サンプルを実行しようとしましたが、StackOverflow エラーが発生しました。無限ループに陥りそうです。ここで何が起こっているのかを知るために誰か助けてくれませんか?
以下のコードスニペットを見つけてください
public class ConstructorExample {
private ConstructorExample c1 = new ConstructorExample();
public ConstructorExample(){
throw new RuntimeException();
}
public static void main(String[] str){
ConstructorExample c = new ConstructorExample();
}
}