运行时提示Exception in thread "main" java.lang.StackOverflowError

为什么会报这样的错我理解只是创建对象
2025-01-26 14:29:32
推荐回答(2个)
回答1:

死循环了

~~~~~~~~~~

回答2:

public class TryNull {

}

class Main {
public static void main(String[] args) {
TryNull t = new TryNull();
}
}