赞
踩
- /*
- * 在java中可作为GC Roots的对象有:
- * 1.虚拟机栈(栈帧中的局部变量区,也叫做局部变量表)中引用的对象。
- * 2.方法区中的类静态属性引用的对象。
- * 3.方法区中常量引用的对象
- * 4.本地方法栈中JNI(Native方法)引用的对象。
- * */
- public class GCRootDemo {
- private byte[] byteArray = new byte[100*1024*1024];
-
- public static void m1(){
- GCRootDemo t1 = new GCRootDemo();
- System.gc();
- System.out.println("第一次GC完成");
- }
-
- public static void main(String[] args){
- m1();
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。