1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

[docs fix]修正为前文Java内存区域详解中虚拟机栈的局部变量表

This commit is contained in:
衍方 2023-09-13 11:17:18 +08:00 committed by GitHub
parent ba8eb3a3aa
commit 2b7f4afb43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,7 +227,7 @@ public class ReferenceCountingGc {
**哪些对象可以作为 GC Roots 呢?**
- 虚拟机栈(栈帧中的本地变量表)中引用的对象
- 虚拟机栈(栈帧中的局部变量表)中引用的对象
- 本地方法栈(Native 方法)中引用的对象
- 方法区中类静态属性引用的对象
- 方法区中常量引用的对象