scjp考试准备 - 4 - 关于数组

好吧这道题我丢脸了,竟然做错了。

如下程序的输出结果是:

class Alligator{
public static void main(String[] args){
int[]x[] = {{1,2},{3,4,5},{6,7,8,9}};
int[][]y = x;
System.out.print(y[2][1]);
}
}

最后输出7。

我是从1开始数的。

上一篇:STM32的FLASH ID加密


下一篇:C#设置IE代理及遇到问题的解决方案