gpt4 book ai didi

java - 确定 OutOfMemory 错误点

转载 作者:行者123 更新时间:2023-11-30 04:48:31 25 4
gpt4 key购买 nike

在Java中,是否可以准确地找到java.lang.OutOfMemoryError发生的点?

我希望更好地了解我的应用程序在失败之前占用了多少内存

最佳答案

您可以捕获 OutOfMemoryError 并询问运行时,如下所示。

try {
//...
} catch (OutOfMemoryError er) {
// this will tell you how much you have used
long heapSize = Runtime.getRuntime().totalMemory();
System.err.println("memory used "+heapSize);
}

(当堆内存不足时,应该发生 OutOfMemoryError)

如果您不知道代码中的哪个位置会失败,您可以尝试注册一个关闭 Hook 并在那里输出堆大小。

关于java - 确定 OutOfMemory 错误点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10365518/

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