有没有一种方法可以找到在Java应用程序中分配了多少个字节?如果可能,不更改代码?
谢谢。
最佳答案
例如,从这篇文章:
Java unit testing: how to measure memory footprint for method call
Runtime.getRuntime()。freeMemory();
Runtime.getRuntime()。totalMemory();
有没有一种方法可以找到在Java应用程序中分配了多少个字节?如果可能,不更改代码?
谢谢。
最佳答案
例如,从这篇文章:
Java unit testing: how to measure memory footprint for method call
Runtime.getRuntime()。freeMemory();
Runtime.getRuntime()。totalMemory();