What is perm space

来源:互联网 发布:unity3d ugui摇杆 编辑:程序博客网 时间:2024/06/09 15:55

From: http://stackoverflow.com/questions/1279449/what-is-perm-space

It stands for permanent generation:

The permanent generation is special because it holds meta-data describing user classes (classes that are not part of the Java language). Examples of such meta-data are objects describing classes and methods and they are stored in the Permanent Generation. Applications with large code-base can quickly fill up this segment of the heap which will causejava.lang.OutOfMemoryError: PermGen no matter how high your -Xmx and how much memory you have on the machine.


原创粉丝点击