一、虚拟机栈中的本地变量
public class GCRootExample {public void exampleMethod() {// 在虚拟机栈中的本地变量引用的对象MyClass myObject = new MyClass();// ...}
}
二、方法区中的静态变量
public class GCRootExample {// 静态变量引用的对象private static MyClass myStaticObject = new MyClass();
}
三、方法区中的常量引用
public class GCRootExample {// 常量引用的对象private static final String MY_CONSTANT = "constant";
}
四、本地方法栈中JNI(Java Native Interface)引用的对象
public class GCRootExample {// 本地方法栈中JNI引用的对象public native void nativeMethod();
}