Though for-each loop has many advantages but the problem is ,it doesn't work when you want to Filter(Filtering means removing element from List) a List,Can you please any replacement as even traversing through Index is not a good option..
|
|
|
|
|
|
|
What do you mean by "filtering"? Removing certain elements from a list? If so, you can use an iterator:
Update (based on comments): Consider the following example to illustrate how iterator works. Let's say we have a list that contains 'A's and 'B's: A A B B A We want to remove all those pesky
Update #2: |
||||||||||||
|
|
|
If you, like me, don't like modifying a collection while iterating through it's elements or if the iterator just doesn't provide an implementation for remove, you can use a temporary collection to just collect the elements you want to delete. Yes, yes, its less efficient compared to modifying the iterator, but to me it's clearer to understand whats happening:
|
||
|
|
|
|
I have had success using the
method of CollectionUtils in commons collections. |
||||
|
|
|
ChssPly76's answer is the right approach here - but I'm intrigued as to your thinking behind "traversing through index is not a good option". In many cases - the common case in particular being that of an Broadly speaking, if the object in question implements java.util.RandomAccess, then accessing sequential elements via an index should be roughly the same speed as using an Iterator. If it doesn't (e.g. |
||||||
|
