jvm复习:主动产生fullGC

一、jdk8参数

-Xms100m -Xmx100m -Xmn30m -XX:+PrintGCDetails

二、代码:

package cn.edu.tju.test;

public class GcTest01 {
    public static void main(String[] args) {
        int size = 1024* 1024;

        byte[] b1 = new byte[10*size];
        byte[] b2 = new byte[10*size];
        byte[] b3 = new byte[10*size];
        byte[] b4 = new byte[10*size];
        byte[] b5 = new byte[60*size];
        System.out.println("finished......");

    }
}

三、执行结果
jvm复习:主动产生fullGC_第1张图片
可以看到,除了新生代和老年代的回收之外,元空间也发生了垃圾回收

你可能感兴趣的:(jvm,jvm)