Is this a valid way to find and remove item from a LinkedList in Java using a for each loop, is it possible that inconsistency may arise:
for(ObjectType ob : obList) {
if(ob.getId() == id) {
obList.remove(ob);
break;
}
}
|
Is this a valid way to find and remove item from a LinkedList in Java using a for each loop, is it possible that inconsistency may arise:
|
|||
|
|
|
Others have mentioned the valid point that normally this is not how you If you want to keep iterating after a So yes, if you To those who's saying that this will fail because you can't modify a collection in a A It may be best if you add a comment on the I would treat this idiom similar to |
|||||||||||||
|
|
You should use
|
|||
|
|
Edit: Indeed, it will not fail thanks to the break. See polygenelubricant's answer for details. However, this is dangerous way to do. To concurrently iterate and modify a collection in Java, you must use the "ListIterator" object, and use the iterator's own "add()" and "remove()" methods, and not use the ones on the collection. You can check the java doc for the "java.util.Iterator" and "java.util.ListIterator" classes |
|||||||||||||||
|
|
It is best to use an iterator and use it's remove method when searching for an object by iterating over a collection in order to remove it. This is because
I recommend, on principle, foregoing the enhanced for and using something like this instead:
That way you are not making assumptions about the underlying list that could change in the future. Compare the code to remove the last entry called by the iterator remove (formatting Sun's):
against what remove(Object) must do:
|
||||
|
|
|
Try something like this:
That's one of the last places where an Iterator cannot be replaced by a foreach loop. |
|||||||||||||
|
|
The above second loop should be changed a bit
or
|
|||
|
|
|
A
|
||||
|
|
|
or
I would prefer the first. Handling indices is more errorprone and the iterator may be implemented efficiently. And the first suggestion works with Iterable while the second requires a List. |
|||||||||
|