{Heap before GC invocations=1 (full 0):
PSYoungGen total 6656K, used 5053K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 82% used [0x00000000ff900000,0x00000000ffdef590,0x00000000fff00000)
from space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
to space 512K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000000fff80000)
ParOldGen total 13824K, used 0K [0x00000000feb80000, 0x00000000ff900000, 0x00000000ff900000)
object space 13824K, 0% used [0x00000000feb80000,0x00000000feb80000,0x00000000ff900000)
PSPermGen total 21504K, used 2792K [0x00000000f9980000, 0x00000000fae80000, 0x00000000feb80000)
object space 21504K, 12% used [0x00000000f9980000,0x00000000f9c3a170,0x00000000fae80000)
Heap after GC invocations=1 (full 0):
PSYoungGen total 6656K, used 488K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 0% used [0x00000000ff900000,0x00000000ff900000,0x00000000fff00000)
from space 512K, 95% used [0x00000000fff00000,0x00000000fff7a020,0x00000000fff80000)
to space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
ParOldGen total 13824K, used 4176K [0x00000000feb80000, 0x00000000ff900000, 0x00000000ff900000)
object space 13824K, 30% used [0x00000000feb80000,0x00000000fef94020,0x00000000ff900000)
PSPermGen total 21504K, used 2792K [0x00000000f9980000, 0x00000000fae80000, 0x00000000feb80000)
object space 21504K, 12% used [0x00000000f9980000,0x00000000f9c3a170,0x00000000fae80000)
}
PSYoungGen total 6656K, used 5053K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 82% used [0x00000000ff900000,0x00000000ffdef590,0x00000000fff00000)
from space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
to space 512K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000000fff80000)
ParOldGen total 13824K, used 0K [0x00000000feb80000, 0x00000000ff900000, 0x00000000ff900000)
object space 13824K, 0% used [0x00000000feb80000,0x00000000feb80000,0x00000000ff900000)
PSPermGen total 21504K, used 2792K [0x00000000f9980000, 0x00000000fae80000, 0x00000000feb80000)
object space 21504K, 12% used [0x00000000f9980000,0x00000000f9c3a170,0x00000000fae80000)
PSYoungGen 表示
这次运行中jvm自动选择了Parallel Scavenge收集器,垃圾回收大致的共有四种常见的回收机制,主要是: PSYoungGen total 6656K, used 5053K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 82% used [0x00000000ff900000,0x00000000ffdef590,0x00000000fff00000)
from space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
to space 512K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000000fff80000)
ParOldGen total 13824K, used 0K [0x00000000feb80000, 0x00000000ff900000, 0x00000000ff900000)
object space 13824K, 0% used [0x00000000feb80000,0x00000000feb80000,0x00000000ff900000)
PSPermGen total 21504K, used 2792K [0x00000000f9980000, 0x00000000fae80000, 0x00000000feb80000)
object space 21504K, 12% used [0x00000000f9980000,0x00000000f9c3a170,0x00000000fae80000)
PSYoungGen total 6656K, used 5053K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 82% used [0x00000000ff900000,0x00000000ffdef590,0x00000000fff00000)
from space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
to space 512K, 0% used [0x00000000fff00000,0x00000000fff00000,0x00000000fff80000)
Heap after GC invocations=1 (full 0):
PSYoungGen total 6656K, used 488K [0x00000000ff900000, 0x0000000100000000, 0x0000000100000000)
eden space 6144K, 0% used [0x00000000ff900000,0x00000000ff900000,0x00000000fff00000)
from space 512K, 95% used [0x00000000fff00000,0x00000000fff7a020,0x00000000fff80000)
to space 512K, 0% used [0x00000000fff80000,0x00000000fff80000,0x0000000100000000)
ParOldGen total 13824K, used 4176K [0x00000000feb80000, 0x00000000ff900000, 0x00000000ff900000)
object space 13824K, 30% used [0x00000000feb80000,0x00000000fef94020,0x00000000ff900000)
PSPermGen total 21504K, used 2792K [0x00000000f9980000, 0x00000000fae80000, 0x00000000feb80000)
object space 21504K, 12% used [0x00000000f9980000,0x00000000f9c3a170,0x00000000fae80000)
原文:http://www.cnblogs.com/zhailzh/p/0242cea8863dd91ffca50596d25f7bae.html