My question is related to memory footprint in java for class without data member. Suppose in java I have a class which doesn't have data member and it only contains methods. So if I am creating instance of particular class then does it occupies memory in primary memory except object reference memory ?
|
Ultimately, every Java object know its class and has a synchronization primitive optionally attached to it (though |
|||||||||
|
|
Yes, it does, because at minimum even an "empty" object has a pointer to its type information. |
|||||||||||||||
|
|
Let's be clear. References TO your object will, of course, take space. But your object will also take space for its 'this' pointer (i.e. so you can distinguish different instances) and also for the fields of any superclasses - e.g. Object - and finally whatever overhead the heap's internal datastructures have. |
|||
|
Benchmarking memory is difficult because of various sources of interference (growing heap, GC), but it is still worth a try:
Java HotSpot(TM) Server VM 14.3-b01 1000000 8000336 8.0 |
|||
|
|