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?
| |||
feedback
|
|
Iterables.get(yourC, indexYouWant) Because really, if you're using Collections, you should be using Google Collections. | |||||||||||
feedback
|
|
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. | |||||||||||||||||
feedback
|
|
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 | ||||
|
feedback
|
|
Other than | |||||||||||||
feedback
|
|
It sounds like your Collection wants to be List-like, so I'd suggest:
| |||
|
feedback
|
|
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. | |||||||||
feedback
|
|
I stumble about this question sometimes when i have methods that return a collection but in some cases it is certain that there is only one element in the returned collection. Then it does not matter if the collection has an undefined order. | |||
|
feedback
|
|
You could do this:
The javadoc for Collection gives the following caveat wrt ordering of the elements of the array:
| |||||||||||
feedback
|