I was trying to understand the memory structure of HotSpot JVM and got confused with the two terms 'Method Area' and 'PermGen' space. The docs I referred say that Method Area contains the definition of classes and methods including the byte code. Some other docs say that they are stored in the PermGen space.

So can I conclude that these two memory areas are same?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

You should take a look at Java Memory Types and optionally at this doc about the Garbage Collection in Java. The latter is very verbose and both are useful.

Actually the Method area is a part of the Permanent Generation:

A third generation closely related to the tenured generation is the permanent generation. The permanent generation is special because it holds data needed by the virtual machine to describe objects that do not have an equivalence at the Java language level. For example objects describing classes and methods are stored in the permanent generation.

link|improve this answer
feedback

You could consider the "Method Area" a subset of "PermGen", as the permanent generation space does hold class defintions, but it also holds interned Strings and other bits of data unlikely to ever be discarded,

link|improve this answer
But it's not only PermGen subset, there can be a Method Area outside of PermGen space, right? – falsarella Feb 1 at 12:34
No, my understanding is that all that sort of data goes in PermGen. – Ernest Friedman-Hill Feb 1 at 13:12
feedback

Your Answer

 
or
required, but never shown

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