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?
|
|
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:
|
|||||||||||||
|
|
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 EDIT: See the comment below; apparently HotSpot pads to 8 byte boundaries instead of 32, so each instance of Either way, the "single large object" will be at least as efficient as multiple small objects - for simple cases like this. |
|||||||
|
|
No, registering an object takes a bit of memory too. 100 objects with 1 attribute will take up more memory. |
|||
|
|
|
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 Regards, Markus |
||||
|
|
|
The total used / free memory of an program can be obtained in the program via
The runtime has several method which relates to the memory. The following coding example demonstrate its usage.
|
||||
|
|
|
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. |
|||
|
|
|
The question will be a very broad one. It depends on the class variable or you may call as states memory usage in java. It also has some additional memory requirement for headers and referencing. The heap memory used by a Java object includes
Objects in java also requires some "housekeeping" information, such as recording an object's class, ID and status flags such as whether the object is currently reachable, currently synchronization-locked etc. Java object header size varies on 32 and 64 bit jvm. Although these are the main memory consumers jvm also requires additional fields sometimes like for alignment of the code e.t.c. Sizes of primitive types boolean & byte -- 1 char & short -- 2 int & float -- 4 long & double -- 8 |
|||
|
|