19

How is Java's for loop code generated by the compiler?

For example, if I have:

for(String s : getStringArray() )
{
   //do something with s
}

where getStringArray() is a function that returns the Array I want to loop on, would function be called always or only once? How optimal is the code for looping using this construct in general?

3

4 Answers 4

59

On the semantics of enhanced for loop

Here is the relevant excerpts from the Java Language Specification 3rd Edition, slightly edited for clarity:

JLS 14.14.2 The enhanced for statement

The enhanced for statement has the form:

for ( Type Identifier : Expression ) Statement

If the type of Expression is an array type, T[], then the meaning of the enhanced for statement is given by the following basic for statement:

T[] a = Expression;
for (int i = 0; i < a.length; i++) {
    Type Identifier = a[i];
    Statement
}

where a and i 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.

So in fact the language does guarantee that Expression will only be evaluated once.

For completeness, here's the equivalence when the Expression is of type Iterable:

JLS 14.14.2 The enhanced for statement

The enhanced for statement has the form:

for ( Type Identifier : Expression ) Statement

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 iter = Expression.iterator(); iter.hasNext(); ) {
    Type Identifier = iter.next();
    Statement
}

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

Note that it is a compile-time error if Expression is neither an Iterable nor an array, so the above two are the only cases where you can use an enhanced for loop. Also, for clarity, the above quotes leave out information regarding any labels attached on the for loop and any modifiers attached on the Identifier, but these are handled as one would expect.


On the performance of enhanced for loop

Here's a quote from Effective Java 2nd Edition, Item 46: Prefer for-each loops to traditional for loops

The for-each loop, introduced in release 1.5, gets rid of the clutter and the opportunity for error by hiding the iterator or index variable completely. The resulting idiom applies equally to collections and arrays. Note that there is no performance penalty for using the for-each loop, even for arrays. In fact, it may offer a slight performance advantage over an ordinary for loop in some circumstances, as it computes the limit of the array index only once. While you can do this by hand, programmers don't always do so.

Thus the book claims that in fact some compilers go beyond the JLS translation and performs additional optimization on the for-each loop (while still maintaining its semantics, of course).

In summary, you should not worry about the performance of for-each loop. The specification by the language is sensible (Expression only evaluated once), and precisely because this is the preferred construct in many scenarios, compilers will make sure to optimize them as best they can.

See also

Sign up to request clarification or add additional context in comments.

1 Comment

+1 Excellent, amazing, comprehensive answer. I'd give you more than one upvote for it if I could, but sadly, I cannot.
1

JDK 1.4 introduced the RandomAccess interface. It is meant to give a hint to algorithms when, for a given List implementation, it is more efficient to iterate through:

for (int i = 0, n = list.size(); i < n; i++) {
    list.get(i);
}

than

for (Iterator i = list.iterator(); i.hasNext(); ) {
   i.next();
}

Does the foreach loop take this into account? Or does it completely ignore the fact that a given Iterable is in fact a List?

It should be noted that this would imply that adding a (iterable instanceof List && iterable instanceof RandomAccess) test and a downcast to List would work, which would add an overhead that's not always worth it and could be considered a premature optimization for a compiler syntactic sugar feature.

1 Comment

RandomAcces does not imply that the index based loop is more efficient. It only implies that using the index would not be significantly worse. Compare with the opposite, LinkedList. For this implementation, using the index loop would be disastrous. So the marker interface at other classes indicates when this is not the case. But the iterator based loop is sufficient enough for all collections, to be always used. By the way, new questions shouldn’t be posted as answers.
-1

Compiler might call it just once, but you can depend on it. It may not be a good coding practice. If getStringArray() returns same array each time, why not set to a variable first?

EDIT - answer changed with the comments received.

3 Comments

You can in fact depend on it being called once. See java.sun.com/docs/books/jls/third_edition/html/…
I think it's fine to invoke methods in Expression, within reason. for (char c : str.toCharArray()), for (MyEnum e : MyEnum.values()), etc seems idiomatic.
Why not set something that never changes to a variable? Because all that does is make a copy.
-6

for loop is same like loop in javascript so no need to afraid

example:

for(int i=0;i<10;i++)
{
    System.out.Println(i);
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.