Wednesday, August 27, 2014

Heap and PermGen Space

The heap stores all of the objects created by your Java program. The heap's contents is monitored by the garbage collector, which frees memory from the heap when you stop using an object

The perm space refers to a special part of the heap. It holds meta-data describing user classes.

No comments:

Post a Comment