梅里泄漏;对象没有GC根
我正在尝试解决我的应用程序中的内存泄漏问题。 使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,它是相反的,“找不到 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