当我使用普通的for-loop时,
数组中的所有元素都将正常初始化:
数组中的所有元素都将正常初始化:
Object[] objs = new Object[10]; for (int i=0;i<objs.length;i++) objs[i] = new Object();
但是当我使用for-each循环时.
在循环之后,数组元素仍为null:
Object[] objs = new Object[10]; for (Object obj : objs) obj = new Object();
我以为obj是指数组中的特定元素,
所以如果我初始化它,数组元素也将被初始化.
为什么不发生这种情况?
解决方法
I thought obj refers to a particular element in an array,
so if I initialize it,the array element will be initialized as well.
Why isn’t that happening?
不,obj在循环体的开头有数组元素的值.它不是数组元素变量的别名.所以像这样的循环(对于数组;它对于iterables来说是不同的):
for (Object obj : objs) { // Code using obj here }
相当于:
for (int i = 0; i < objs.length; i++) { Object obj = objs[i]; // Code using obj here }
有关增强for循环的确切行为的更多详细信息,请参见section 14.14.2 of the JLS.