gpt4 book ai didi

java - Java 中的 EXCEPTION_ACCESS_VIOLATION

转载 作者:行者123 更新时间:2023-11-29 07:14:12 32 4
gpt4 key购买 nike

我可能在 Java 中遇到了一个奇怪的错误。当我运行以下代码时,出现“EXCEPTION_ACCESS_VIOLATION”异常。

我知道代码没有意义(就逻辑而言),因为它是我最初编写的代码的子集。如果我删除几行,错误就会消失。

谁能找出这个错误的原因是什么?

public static void main(String[] args) {
for (int i=0; i < 4000; i++) {
System.out.println("item " + i);
test1();
}

//runBatch();
System.out.println("Done! bye bye..");
}

public static int test1() {
int count;
int allMiddleCount;
int[] b = new int[0];

allMiddleCount = 0;
for (int i = 1; i < 64; i++)
{
// evaluating the size of the subset
count = 0;
for (int j = 0; j < 6; j++)
count++;

allMiddleCount++;
}

for (int i=0; i < allMiddleCount; i++) {

}

return 0;
}

最佳答案

Can anyone figure out whats the cause of this bug?

如果进程正在终止而不是正常的 Java 异常,则基本上是 JVM 错误。您还没有说您在哪个平台上或您使用的是哪个版本,但请尝试更新到更高版本。

关于java - Java 中的 EXCEPTION_ACCESS_VIOLATION,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11102010/

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