java中使用的峰值内存和最大内存有什么区别?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜 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. :)