查看ddms堆大小

发布于 2024-11-03 12:33:58 字数 246 浏览 2 评论 0原文

与此主题相关< code>Android: OutofMemoryError....

如何查看 ddms (Eclipse) 上的堆大小?我只能跟踪分配情况,但什么也没有显示

In relation to this topic Android: OutofMemoryError....

How Can you see the heap size on ddms (Eclipse)? I can only track allocations and it doesn't show nothing

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

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

发布评论

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

评论(2

挽心 2024-11-10 12:33:58

您可以尝试从代码本机堆分配:Debug.getNativeHeapAllocationSize()

You can try from code native heap allocation : Debug.getNativeHeapAllocatedSize()

待天淡蓝洁白时 2024-11-10 12:33:58

这显示了设备的最大堆内存,

Runtime rt = Runtime.getRuntime();
long maxMemory = rt.maxMemory();

这是您的应用程序所需的堆

Runtime rt = Runtime.getRuntime();
long maxMemory = rt.maxMemory();

this shows max heap memory of device

Runtime rt = Runtime.getRuntime();
long maxMemory = rt.maxMemory();

this is for heap required by your app

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