Domanda

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
    }           
}
È stato utile?

Soluzione

Use Iterator:

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

Or better directly for-each:

for (Object obj : objects) {
}

Altri suggerimenti

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;
    // ...
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top