I have to use an old piece of code where I have a List and I need to iterate over it. Foreach loop does not work. Which is the best and safest way to do this?

Example

private void process(List objects) {
    someloop {
        //do something with list item
        //lets assume objects in the List are instances of Content class
    }           
}
link|improve this question

2  
Why doesn't the for-each loop work? – mrkhrts Sep 16 '11 at 14:07
Do you mean that you need to remove elements from the list, or do something else which prevents the usage of for-each? Please clarify. – Péter Török Sep 16 '11 at 14:10
I was trying the foreach loop with the Content class (not Object) and that's why it didn't work. My mistake, I didn't realize that. Thank you – Tomas Sep 16 '11 at 14:12
What does Foreach loop does not work mean? This seems to be a candidate for low quality question flag. – Miserable Variable Sep 16 '11 at 14:13
So...first you say foreach loop does not work, do not explain what you mean by that and then accept an answer that uses foreach loop. This is has to be textbook definition of a low quality question. – Miserable Variable Sep 16 '11 at 14:23
show 2 more comments
feedback

closed as too localized by Josh Lee, Miserable Variable, Tomas, Tim Post Sep 18 '11 at 20:41

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

up vote 7 down vote accepted

Use Iterator:

Iterator iter = objects.iterator();
while (iter.hasNext()) {
    Object element = iter.next();
}

Or better directly for-each:

for (Object obj : objects) {
}
link|improve this answer
Is an interator more efficient than a simple for() loop? – mcfinnigan Sep 16 '11 at 14:11
No difference. For-each uses iterator inside. – Petar Minchev Sep 16 '11 at 14:12
feedback

Either use an iterator, if you need to be able to remove the current element from the list:

for (Iterator it = list.iterator(); it.hasNext();) {
    Foo foo = (Foo) it.next();
    // ...
    it.remove();
}

Or use a foreach loop:

for (Object o : list) {
    Foo foo = (Foo) o;
    // ...
}
link|improve this answer
Fixed. Thank you. I prefer using a for loop, because it reduces the scope of the iterator to the loop. – JB Nizet Sep 16 '11 at 14:11
Yeah, that's a good reason. – Petar Minchev Sep 16 '11 at 14:13
Why do the it.remove() ? Could that lead to a concurrent access exception with some list implementations? – James DW Sep 16 '11 at 14:35
It's just to show why an iterator might be necessary: removing an element from a collection while iterating over it is only possible using an iterator. It's not possible with a foreach loop, and using iterator is the only way to avoid a ConcurrentModificationException. If remove is not necessary, the foreach loop is simpler and shorter. – JB Nizet Sep 16 '11 at 14:41
@James DW - When using iterator you are allowed to remove elements if you wish. When using for-each loop you can't. – Petar Minchev Sep 16 '11 at 14:42
feedback

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