Since I can't edit/comment, here is my addition.
for each is also valid for arrays. e.g.
int[] test = new int[]{1,4,5,7};
for (int intValue : test) {
// do some work here on intValue
}
So, overall summary:
[nsayer]The following is the longer form of what is happening:
for(Iterator<String> i = someList.iterator(); i.hasNext(); ) {
String item = i.next();
System.out.println(item);
}
Note that if you need to use
i.remove(); in your loop, or access
the actual iterator in some way, you
cannot use the for( : ) idiom, since
the actual Iterator is merely
inferred.
[Denis Bueno]
It's implied by nsayer's answer, but
it's worth noting that the OPs for(..)
syntax will work when "someList" is
anything that implements
java.lang.Iterable -- it doesn't have
to be a list, or some collection from
java.util. Even your own types,
therefore, can be used with this
syntax.
Answer to Konrad Rudolph's comment
- To collect together all the relevant information in one place so there's one comprehensive answer (isn't that the point of SO?)
- ADD the fact that it also applies to arrays (which wasn't mentioned previously at the time of my posting.)
- Because I don't have the rep to edit someone else's post to add my thoughts or add a comment to mention that it works on arrays.