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?
|
|
|
||
|
|
|
|
Iterables.get(yourC, indexYouWant) Because really, if you're using Collections, you should be using Google Collections. |
||||||||
|
|
|
It sounds like your Collection wants to be List-like, so I'd suggest:
|
||
|
|
|
|
If you know that the collection is a queue then you can cast the collection to a queue and get it easily. There are several structures you can use to get the order, but you will need to cast to it. |
||||||
|
|
|
Looks like that is the best way to do it:
Great question... At first, it seems like an oversight for the 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 While it might seem a bit wasteful, it might not be as bad as you think. The For example, looking at the type returned by the |
|||
|
|
|
|
Of course there may be a better way to access the first element if you know the implementing container class... |
||
|
|
|
|
Other than |
||||||
|
|
|
You could do this:
The javadoc for Collection gives the following caveat wrt ordering of the elements of the array:
|
||||||||||
|
|
|
There is no such a thing as "first" item in a From the Java doc's Collection.iterator() method:
So you can't. If you use another interface such as List, you can do the following:
But directly from a Collection this is not possible. |
||||||||||||||
|
