梅里泄漏;对象没有GC根

发布于 2024-12-10 20:24:23 字数 257 浏览 0 评论 0原文

我正在尝试解决我的应用程序中的内存泄漏问题。 使用 Eclipse 内存分析器。 由于 OOM 错误,我的应用程序在一段时间后崩溃。

最大的嫌疑人似乎是我使用的 9 ViewFlippers。 当在分析仪中查看它们时,检查员说它没有 GC 根。

这是否意味着它不会被垃圾收集器清理? 如果是这样,我将如何解决这个问题...... 手动清除它们?或者更好的是,我如何将它包含在 GC root 中?

我在内存分析方面还很陌生,所以可以使用一些技巧。

I'm trying to solve memory leaks in my application.
Using the Eclipse Memory Analyzer.
My application crashes after a while due to OOM error.

The biggest suspects seem to be 9 ViewFlippers i use.
when looking at them in the analyzer the inspector says it has no GC root.

Does this mean it won't get cleaned up by the Garbage Collector ?
if so, how would I go about solving this ...
Manually clear them ? Or better , how would i include it in GC root ?

Im pretty new at memory analyzing, so could use some tips.

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

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

发布评论

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

评论(1

终止放荡 2024-12-17 20:24:23

实际上,它是相反的,“找不到 GC root”,意味着该对象不再被引用,因此垃圾收集器将在下次运行时清理它。

查看这个精彩视频,它解释了如何查找内存泄漏:

http://www.youtube.com/观看?v=_CruQY55HOk

Actually it is the opposite, "No GC root found", means that object is not referenced anymore so garbage collector will clean it up next time it runs.

Check this great video, it explains how to find memory leaks:

http://www.youtube.com/watch?v=_CruQY55HOk

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