In this code, why isn’t my array initialised as I want it to? Is the for-each loop not designed to do that, or am I just not using it correctly?
int[] array = new int[5]; //initialise array -> Doesn't work! Array still full of 0's for(int i : array) i = 24;
The for-each loop will not work for this case. You cannot use a for-each loop to initialize an array. Your code:
will translate to something like the following:
If this were an array of objects, it would still fail. Basically, for-each assigns each entry in the collection or array, in turn, to the variable you provide, which you can then work with. The variable is not equivalent to an array reference. It is just a variable.
For-each cannot be used to initialize any array or Collection, because it loops over the current contents of the array or Collection, giving you each value one at a time. The variable in a for-each is not a proxy for an array or Collection reference. The compiler does not replace your ‘
i‘ (from ‘int i‘) with ‘array[index]‘.If you have an array of Date, for example, and try this, the code:
would be translated to something like this:
which as you can see will not initialize the array. You will end up with an array containing all nulls.
NOTE: I took the code above, compiled it into a
.classfile, and then used jad to decompile it. This process gives me the following code, generated by the Sun Java compiler (1.6) from the code above: