Skip to content

Commit

Permalink
docs: update 01-jvm-memory-structure.md (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
weloe committed Sep 28, 2023
1 parent 5215546 commit e8db0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/01-jvm-memory-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Java 虚拟机栈的栈顶的栈帧是当前正在执行的活动栈,也就是

### 方法的调用

- 静态链接:当一个字节码文件被装载进 JVM 内部时,如果被调用的目标方法在编译期可知,且运行时期间保持不变,这种情况下降调用方的符号引用转为直接引用的过程称为静态链接
- 静态链接:当一个字节码文件被装载进 JVM 内部时,如果被调用的目标方法在编译期可知,且运行时期间保持不变,这种情况下将调用方的符号引用转为直接引用的过程称为静态链接
- 动态链接:如果被调用的方法无法在编译期被确定下来,只能在运行期将调用的方法的符号引用转为直接引用,这种引用转换过程具备动态性,因此被称为动态链接。
- 方法绑定
- 早期绑定:被调用的目标方法如果在编译期可知,且运行期保持不变。
Expand Down

0 comments on commit e8db0e1

Please sign in to comment.