Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the exact difference between Runtime.maxMemory() and Runtime.totalMemory()? The javadoc is quite vague about this (for me).

What are typical use cases for these two methods, that is, When would it be inappropriate to use the respective other one?

share|improve this question

3 Answers

up vote 2 down vote accepted

The totalMemory() returns how much memory is currently used, while the maxMemory() tells how much can the jvm total allocate.

Note: that form this derives: totalMemory() <= maxMemory(), and you can also get 'how much memory is left' by maxMemory() - totalMemory()

One use case is for diagnosing how much memory your program use, and you'll use totalMemory() for it.
Note: both are referring only to heap memory, and not stack memory.

share|improve this answer

The total memory is the memory that is currently allocated to the JVM. It varies over time. The max memory is the maximum memory that the JVM could ever reach. It's the upper limit of the total memory.

share|improve this answer

MaxMemory() is the value set by Xmx parameter

share|improve this answer
how to get the Xms parameter after the program started running ? – Sunny Jul 3 '12 at 7:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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