任何人都可以在下面的代码中帮助理解运行时的 StackOverFlowError。我无法理解工作流程。面试题之一:)
public class Interview {
Interview i1 = new Interview();
Interview(){
System.out.println("Hello");
}
public static void main(String[] args){
Interview i = new Interview();
}
}