gpt4 book ai didi

java - Java 程序如何跟踪其运行期间使用的最大实际堆大小?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:55:59 26 4
gpt4 key购买 nike

我正在运行某个 Java 程序,其 -Xmx 高于 -Xms,即它的堆可以增长。执行结束时的堆大小 (IIRC) 不是运行期间使用的最大值。

  • 如何获取当前堆大小?
  • 除了定期“我自己”轮询当前大小之外,我如何才能在运行过程中获得最大堆大小?

最佳答案

获取当前堆大小:

public static long getHeapSize(){
int mb = 1024*1024;

//Getting the runtime reference from system
Runtime runtime = Runtime.getRuntime();

return ((runtime.totalMemory() - runtime.freeMemory()) / mb);
}

关于java - Java 程序如何跟踪其运行期间使用的最大实际堆大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14937381/

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