I have an object which is a composite of several other objects. When i use the getObjectSize() method in the Instrumentation package, does it include the size of the composite objects also?

link|improve this question

58% accept rate
feedback

3 Answers

The API doc says:

The result may include some or all of the object's overhead, and thus is useful for comparison within an implementation but not between implementations. The estimate may change during a single invocation of the JVM.

link|improve this answer
feedback

No. The returned size reflects the size of that object - it includes the references that object holds, but not the size of the objects being referred to. (And, as others have noted, it's not guaranteed to actually be correct.)

link|improve this answer
feedback

getObjectSize(Object obj) returns the storage consumed by the specified object (obj)... so you will get the size of whatever you will specify.

link|improve this answer
Not necessarily. It returns an approximate value of the size, that too dependent on the implementation. – Ravi Gupta Mar 12 '10 at 7:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.