Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Example code:

int a[] = new int[]{0, 1, 2, 3};
int result = 0;
for (int i : a)
    result += i;

Is the loop guaranteed to iterate across a[0], a[1], a[2], a[3] in that order? I strongly believe the answer is yes, but this page seems to not unambiguously state order.

Got a solid reference?

share|improve this question
Why didnt you just try ? waht other way would the compiler implement a loop over an array ? THere are only two possible options from start to end(forwards) and end to start(backwards). – mP. Jul 11 '11 at 7:24
8  
Because JVMs could vary. Knowing the definition of a behavior is different from one example of the behavior. – dfrankow Jul 12 '11 at 21:50
1  
@df the for each loop is syntactical sugar done by the compiler - it has nothing to do w/ JVMs. Its almost absurd to think that a compiler on different platforms would do array loops differently. Thats just nuts. – mP. Jul 16 '11 at 3:03
This question has been answered definitively, so there is nothing more to say. – dfrankow Jul 18 '11 at 15:24
1  
@mP. You're a jerk. I didn't know that this was the case and you managed to make me feel like a big dummy. Thanks for being an ass, and showing people how NOT to be. Oh, and I have to say in response to you last comment, that according to your logic, it must be 'almost absurd to think that' there are people who are less knowledgeable about Java compilers and virtual machines than anyone else, rendering all questions about them sad and unfortunate. Your comments have added zero value to this page. – DavidDraughn Apr 11 '12 at 2:56

4 Answers

up vote 24 down vote accepted

According to the JLS, The enhanced for statement, your for-loop is equivalent to

int[] array = a;
for (int index = 0; index < a.length; index++) {
    int i = array[index];
    result += i;
}

"where array and index are compiler-generated identifiers that are distinct from any other identifiers (compiler-generated or otherwise) that are in scope at the point where the enhanced for statement occurs." (slightly paraphrasing the variable names here).

So yes: the order is absolutely guaranteed.

share|improve this answer
Thanks! s/enchanced/enhanced/ above. – dfrankow Mar 18 '09 at 21:13
I think that second line should be: for (int index = 0; index < a.length; index++) { Perils of using "i" for something that isn't an index. – cygil Mar 18 '09 at 21:38
@cygil: of course, thanks. I was trying to re-use the variable names from the example code and promptly missed something. – Joachim Sauer Mar 18 '09 at 21:42

See section 14.14.2 of the Java Language Specification, 3rd edition.

If the type of Expression is a subtype of Iterable, then let I be the type of the expression Expression.iterator(). The enhanced for statement is equivalent to a basic for statement of the form:

for (I #i = Expression.iterator(); #i.hasNext(); ) {
        VariableModifiersopt Type Identifier = #i.next();
   Statement
}

Where #i is a compiler-generated identifier that is distinct from any other identifiers (compiler-generated or otherwise) that are in scope (ยง6.3) at the point where the enhanced for statement occurs.

share|improve this answer

It states in the JLS http://java.sun.com/docs/books/jls/third_edition/html/statements.html#14.14.2

That

for ( VariableModifiersopt Type Identifier: Expression) Statement

is equivalent to

T[] a = Expression;
L1: L2: ... Lm:
for (int i = 0; i < a.length; i++) {
        VariableModifiersopt Type Identifier = a[i];
        Statement
}
share|improve this answer

I did not find anything in the page you've referenced that would imply out-of-order iteration. Can you post the specific quote?

In any case, I find that this code:

public static void main( String args[] ) {
	double a[] = new double[] { 0, 1, 2, 3 };
	int result = 0;
	for ( double i : a ) {
		result += i;
	}

decompiles to old-style looping:

 public static void main(String args[])
    {
        double a[] = {
            0.0D, 1.0D, 2D, 3D
        };
        int result = 0;
        double ad[];
        int k = (ad = a).length;
        for(int j = 0; j < k; j++)
        {
            double i = ad[j];
            result = (int)((double)result + i);
        }
    }

Of course, that's not the same as a guarantee, but at the very least out-of-order iteration over an array would be very weird and would seem to go against obvious common-sense implementation.

share|improve this answer
1  
It could be faster to split the elements and thread the loop. Some compilers already unroll and vectorize loops doing math. That is out of order. Threads could be the next thing. – Zan Lynx Jun 26 '09 at 23:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.