Is the memory space consumed by one object with 100 attributes the same as that of 100 objects, with one attribute each?
How much memory is allocated for an object?
How much additional space is used when adding an attribute?
|
7
|
|||
|
|
|
No, registering an object takes a bit of memory too. 100 objects with 1 attribute will take up more memory. |
||
|
|
|
|
no, 100 small objects needs more information (memory) than one big. |
||
|
|
|
|
Each object has a certain overhead for its associated monitor and type information, as well as the fields themselves. Beyond that, fields can be laid out pretty much however the JVM sees fit (I believe) - but as shown in another answer, at least some JVMs will pack fairly tightly. Consider a class like this:
vs
On a 32-bit JVM, I'd expect 100 instances of Either way, the "single large object" will be at least as efficient as multiple small objects - for simple cases like this. |
||
|
|
|
|
According to JavaWorld A plain So 'no' is the answer; Note: In addition, Mindprod summarizes the different sizes, which does not change between 32 and 64bits OS, except for object references. Some 64-bits JVM can compressed their object references in order to avoid the overhead when run on 32-bits platform.
The JavaWorld article gives a little more detail about storage overhead depending on the container used: For instance, Wrappers can be costly too compared to primitive type for attributes:
Other containers are costly too:
|
||||||||
|
|
|
I've gotten very good results from the java.lang.instrument.Instrumentation approach mentioned in another answer. For good examples of its use, see the entry, Instrumentation Memory Counter from the JavaSpecialists' Newsletter and the java.sizeOf library on SourceForge. |
||
|
|
|
|
The rules about how much memory is consumed depend on the JVM implementation and the CPU architecture (32 bit versus 64 bit for example). For the detailed rules for the SUN JVM check my old blog at http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5163 Regards, Markus |
||
|
|
|
|
In case it's useful to anyone, you can download from my web site a small Java agent for querying the memory usage of an object. It'll let you query "deep" memory usage as well. |
||
|
|