vote up 3 vote down star

if I do this in Java:

for(String s : myCollection.expensiveListGeneration())
{
      doSomething();
}

is expensiveListGeneration() invoked just once at the beggining or in every cycle iteration?

Is it implementation dependent?

flag

2 Answers

vote up 7 vote down check

because it is equivalent to using an iterator, it is equivalent to calling the collections' . iterator() method, and it is called once.

link|flag
vote up 9 vote down

It's invoked once, and not implementation dependant. The for-each loop is based on the Iterable interface. All it does is call the collection's iterator() method once at the beginning, and then works with that iterator.

link|flag
ah, answered at the same time heh :) – Chii Aug 31 at 11:04

Your Answer

Get an OpenID
or

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