java中使用的峰值内存和最大内存有什么区别?

发布于 2024-10-15 18:08:54 字数 56 浏览 5 评论 0原文

我正在使用 Java 分析器,它说使用的峰值内存略高于使用的最大内存。这两个数字不应该是相同的吗?

I am using a Java profiler and it is saying that peak memory used is slightly higher than max memory used. Shouldn't these 2 numbers be the same?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙与沫 2024-10-22 18:08:54

我猜 max 是当前分配给堆的总内存,peak 是堆曾经增长的最大大小。由于堆的大小可以减小也可以增大(如果 -Xmx > -Xms),这对我来说听起来很合乎逻辑。然而我可能完全错了。 :)

I guess max is the total memory currently allocated to the heap, peak is the biggest size the heap has ever grown. Since the size of the heap can go down as well as up (if -Xmx > -Xms), this sounds logical to me. I could, however be completely wrong. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文