gpt4 book ai didi

java - 运行程序时出现错误

转载 作者:行者123 更新时间:2023-12-01 08:08:07 25 4
gpt4 key购买 nike

我有以下代码:

ClassA.java

public class ClassA {
static boolean isDone = false;
public static void main(String[] args) {
System.out.println("In class A.");
if (!isDone) {
new ClassB();
isDone = true;
}
}
}

ClassB.java

public class ClassB {
ClassB () {
ClassA.main(null);
}
}

运行程序时,我得到以下输出:

In class A.
In class A.
Exception in thread "main" java.lang.StackOverflowError
at sun.nio.cs.SingleByte.withResult(Unknown Source)
at sun.nio.cs.SingleByte.access$000(Unknown Source)
at sun.nio.cs.SingleByte$Encoder.encodeArrayLoop(Unknown Source)
at sun.nio.cs.SingleByte$Encoder.encodeLoop(Unknown Source)
at java.nio.charset.CharsetEncoder.encode(Unknown Source)
at sun.nio.cs.StreamEncoder.implWrite(Unknown Source)

它正在打印“In class A”。正如预期的那样,但为什么我会收到堆栈溢出错误?

最佳答案

您在调用 ClassB() 后设置标志 isDone。因此会发生无限递归调用,这会在达到内存时导致 StackOverFlowError

在调用 ClassB(); 之前设置标志 (isDone)。

如下图:

if (!isDone) {
isDone = true;
new ClassB();
}

关于java - 运行程序时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19740705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com