JVM学习
2018-11-06 11:55:17 34 举报
JVM学习
作者其他创作
大纲/内容
线程1
b=2
局部变量表
Java栈
Eden
老年代
方法区
栈帧(main)
程序计数器(12)
垃圾收集器
HelloWorld
方法出口
本地方法栈
新生代
GC
装载子系统
堆
栈帧1
操作数栈
执行引擎
from
HelloWorld.class
a=1
public class HelloWorld { public int calculate(){ int a = 1; int b = 2; int c = (a + b) * 10; return c; } public static void main(String[] args) { HelloWorld helloWorld = new HelloWorld(); int result = helloWorld.calculate(); }}
to
栈帧(calculate)
helloworld
程序计数器
result=30
运行时数据区
c=30
栈帧2
0 条评论
下一页