If I have a collection, such as Collection<String> strs
, how can I get the first item out? I could just call an Iterator
, take its first next()
, then throw the Iterator
away. Is there a less wasteful way to do it?
Get the first element of ArrayList with use of get(index) method by passing index = 0.
There are three common ways to iterate through a Collection in Java using either while(), for() or for-each(). While each technique will produce more or less the same results, the for-each construct is the most elegant and easy to read and write.
If you need fast add and removal of elements, use LinkedList (but it has a very poor seeking performance).
Looks like that is the best way to do it:
String first = strs.iterator().next();
Great question... At first, it seems like an oversight for the Collection
interface.
Note that "first" won't always return the first thing you put in the collection, and may only make sense for ordered collections. Maybe that is why there isn't a get(item)
call, since the order isn't necessarily preserved.
While it might seem a bit wasteful, it might not be as bad as you think. The Iterator
really just contains indexing information into the collection, not a usually a copy of the entire collection. Invoking this method does instantiate the Iterator
object, but that is really the only overhead (not like copying all the elements).
For example, looking at the type returned by the ArrayList<String>.iterator()
method, we see that it is ArrayList::Itr
. This is an internal class that just accesses the elements of the list directly, rather than copying them.
Just be sure you check the return of iterator()
since it may be empty or null
depending on the implementation.
Iterables.get(yourC, indexYouWant)
Because really, if you're using Collections, you should be using Google Collections.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With