VisualVM 中活动对象和分配对象有什么区别?

发布于 2024-10-14 19:19:40 字数 129 浏览 1 评论 0原文

如此处的屏幕截图所示,0 个活动对象,9 个已分配对象。

活动对象和分配对象有什么区别?

jvisualvm 截图

As seen in the screenshot here, 0 live objects, 9 allocated objects.

What's the difference between a live and an allocated object?

jvisualvm screenshot

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

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

发布评论

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

评论(2

温柔嚣张 2024-10-21 19:19:40

已分配对象的数量并不是垃圾收集器尚未回收的对象数量。相反,它是自应用程序启动以来或自 VisualVM 中重置“收集结果缓冲区”以来创建的对象数(内存分析器视图中有一个按钮可重置收集结果缓冲区)。

存活对象是那些还没有被垃圾收集器回收的对象;这可能包括无法访问的对象,并且肯定包括应用程序仍在使用的对象。

The number of allocated objects is not the number of objects not yet reclaimed by the garbage collector. Rather, it is the number of objects created since application start, or since a reset of the "Collected Results Buffer" in VisualVM (there is a button in the memory profiler view to reset the collected results buffer).

The live objects are those objects that haven't been reclaimed by the garbage collector; this may include objects that are unreachable, and will definitely include objects that are still in use by the application.

左秋 2024-10-21 19:19:40
  • 分配的对象是自应用程序启动(或重置)以来创建的所有对象
  • 活动对象是程序正在积极使用的可到达对象(可能仍在年轻代中)
  • Allocated objects are all objects that have been created since application start (or reset)
  • Live objects are reachable objects that are being actively used by your program (likely still in the Young Generation)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文