Newsletter sign-up
View all newsletters

Enterprise Java Newsletter
Stay up to date on the latest tutorials and Java community news posted on JavaWorld

Sponsored Links

Optimize with a SATA RAID Storage Solution
Range of capacities as low as $1250 per TB. Ideal if you currently rely on servers/disks/JBODs

Memory matters

Discover how much memory an object consumes

  • Print
  • Feedback

First published on December 28, 2001. Updated on January 10, 2003.

Q Without buying an expensive memory profile, is there a simple way to see how much memory a Java object consumes?

I don't wish to see the memory allocations in realtime, so I can employ java.lang.Runtime's memory methods.

For instance, I could:

  1. Get the total amount of memory available to the VM:
    long totalMem = java.lang.Runtime.freeMemory();
    
    
  2. Explicitly set the object in question to null:
    Object myBigObject = null;
    
    
  3. Call the garbage collector

  4. Subtract:
    System.out.println("You just got rid of " + totalMem - java.lang.Runtime.freeMemory());
    
    


What do you think of this idea?

AUnfortunately, you cannot directly determine an object's size. However, in lieu of spending lots of lucre on a profiler, you can crudely approximate the size. While your approach is on the right track, I would change it a bit.

When you instantiate myBigObject and check the memory, the JVM may be performing other activities. So simply creating one object and checking the difference in memory size might be misleading. Instead, you can create a number of objects and take the average of the differences. By taking the average memory size, you can prevent some background JVM activity from overly skewing your results.

The following memory checking main is based upon "Question of the Week No. 107" from the Java Developer Connection:

public class Memory {
    private final static int _SIZE = 500;
    public static void main( String [] args ) throws Exception {
        Object[] array = new Object[_SIZE];
        Runtime.getRuntime().gc();
        long start = Runtime.getRuntime().totalMemory();
        for (int i = 0; i < _SIZE; i++) {
            array[i] = new Object();
        }
        Runtime.getRuntime().gc();
        long end = Runtime.getRuntime().totalMemory();
        long difference = ( start -  end ) / _SIZE;
        System.out.println( difference + " bytes used per object on
average" );
    }
}


Class Memory instantiates 500 Objects and calculates the average memory footprint. Note that I call gc() each time before calling totalMemory(). You cannot force garbage collection; however, it is my hope that the JVM does it so that we can have a cleaner totalMemory() call.

About the author

Tony Sintes is an independent consultant and founder of First Class Consulting, Inc., a consulting firm that specializes in the bridging of disparate enterprise systems and training. Outside of First Class Consulting, Tony is an active freelance writer as well as author of Sams Teach Yourself Object-Oriented Programming in 21 Days (Sams, 2001; ISBN: 0672321092).
  • Print
  • Feedback

Resources