YourKit - The retained size of an object doesn't equal the retained size of all the objects referred by it

爷,独闯天下 提交于 2019-12-21 15:02:22

问题


The retained size of an object doesn't equal the retained size of all the objects referred by it.

Here is what is happening:

  1. Using YourKit to capture memory snapshot.
  2. click on an object & show instances by class type
  3. let's say the instance's retained memory is A bytes (600mb)
  4. expand and sum the retained size for the underlying instances let's say the sum is B (300mb)

A >> B


回答1:


Let me give you an example.

First of all, you need to understand what retained size is. From the official documentation:

Retained size of an object is its shallow size plus the shallow sizes of the objects that are accessible, directly or indirectly, only from this object. In other words, the retained size represents the amount of memory that will be freed by the garbage collector when this object is collected.

In a simple the retained size of an object will indeed be the sum of the objects referred by it. In the picture below the retained size of Obj1 is the sum of the Obj1 shallow size, and Obj2 and Obj3 retained size:

This is not the case in more complicated referencing models. If Obj6 starts referencing Obj5, then Obj5 will not be accessible only from Obj2. So the retained size of Obj2 will now include only Obj4, and will exclude Obj5. The retained size of Obj1 will stay the same. If garbage collector frees Obj1, it'll free the whole references graph of size 41. However, if garbage collector frees only Obj2, it will not free Obj5, because it would be still referenced by Obj6.



来源:https://stackoverflow.com/questions/23941688/yourkit-the-retained-size-of-an-object-doesnt-equal-the-retained-size-of-all

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!