I need to delete some objects from an ArrayList if they meet a condition and I\'m wondering which way could be more efficient.
ArrayList
Here\'s the situation: I
Maybe Iterator’s remove() method? The JDK’s default collection classes should all creator iterators that support this method.