数组内存分析图
2016-05-18 17:46:58 20 举报
Java数组内存分析图
作者其他创作
大纲/内容
y[2] 0
堆
new int[3];
x = null; 连线断开
int[] x = new int[3]; int[] y = new int[3];y[1] = 89; \t System.out.println(x[1]);// 0 \t\tx = null;
栈
x[2] 0
y
0x008a
x[0] 0
不再被引用,成为垃圾,会在不确定的时间内被垃圾回收器回收
new int[3];
0→89
x
main
0x0079
x[1] 0
y[1] 0
y[0] 0
0 条评论
下一页