④. 总结
- ①. 代码演示
public class CustomerTest { public static void main(String[] args) { Customer cust = new Customer(); } }
②. 图解代码
④. 对象的访问定位
前言:
JVM是如何通过栈帧中的对象引|用访问到其内部的对象实例的呢?-> 定位,通过栈上reference访问
①. 句柄访问
②. 直接指针(HotSpot采用)
2021-11-15 00:29:28
public class CustomerTest { public static void main(String[] args) { Customer cust = new Customer(); } }
②. 图解代码
前言:
JVM是如何通过栈帧中的对象引|用访问到其内部的对象实例的呢?-> 定位,通过栈上reference访问
①. 句柄访问
②. 直接指针(HotSpot采用)