vote up 4 vote down star

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?

flag

70% accept rate

8 Answers

vote up 2 vote down check

Iterables.get(yourC, indexYouWant)

Because really, if you're using Collections, you should be using Google Collections.

link|flag
1  
That does the same thing, it just checks if it is a list first, and gets by index if it is. It also has some code to try to fail faster on an actual Collection (that is if the index is too large it tries to figure that out without iterating through the whole thing and throwing the exception at the end). – Yishai Nov 4 at 3:37
Honestly, performance-wise it might be slightly slower than c.iterator().next() - but the code is much clearer and simpler to modify. – Carl Nov 4 at 4:14
I certainly agree it is cleaner, but the OP was about wasteful, but I guess since your answer was accepted that is what was desired. – Yishai Nov 5 at 20:03
vote up 0 vote down

It sounds like your Collection wants to be List-like, so I'd suggest:

List<String> myList = new ArrayList<String>();
...
String first = myList.get(0);
link|flag
vote up 0 vote down

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.

link|flag
I agree, if you don't wanna iterate, don't use collection. Use some other more specific interface instead. – Vinegar Nov 4 at 2:41
I wonder though...let's say the actual underlying data is a SortedSet, so order makes sense, but you only have a Collection view of it (for a non-silly reason, let's say); if you cast the Collection to a List, Queue, etc and try to get/poll/etc, does disaster ensue? Likewise, if underlying structure is a List, so on, so forth. – Carl Nov 4 at 3:15
@Cal - I haven't tried it, but if you cast a collection into a very different type than it was originally you should get an error, but, I haven't tried it, so I could be wrong. – James Black Nov 4 at 3:17
vote up 2 vote down

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 perserved.

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.

link|flag
vote up 0 vote down

Of course there may be a better way to access the first element if you know the implementing container class...

link|flag
vote up 1 vote down

Other than collection.toArray()[0] or new ArrayList<String>(collection).get(0) I don't see any options. The Iterator is likely the most efficient solution if you'd like to know that.

link|flag
Both would be more wasteful ways to do it. – Oscar Reyes Nov 4 at 2:37
Exactly. Both needs to iterate/map the entire collection to be created. – BalusC Nov 4 at 2:39
+1 Although not the most efficient alternative, this may be helpful for other wanting to change the collection either to an array or a arraylist. – Oscar Reyes Nov 4 at 15:42
vote up -1 vote down

You could do this:

String strz[] = strs.toArray(String[strs.size()]);
String theFirstOne = strz[0];

The javadoc for Collection gives the following caveat wrt ordering of the elements of the array:

If this collection makes any guarantees as to what order its elements are returned by its iterator, this method must return the elements in the same order.

link|flag
1  
This creates a new String array, much more expensive than creating an iterator. – Jim Ferrans Nov 4 at 2:46
Yeah, I thought about that after I posted this. Regardless of the method used, ordering depends on the underlying implementation of the Collection. "First" then becomes a relative term. However, the iterator() way of doing it is probably better in most cases. – argherna Nov 4 at 13:38
1  
-1 because this is never better than iterator().next(). – Kevin Bourrillion Nov 4 at 16:55
vote up 7 vote down

There is no such a thing as "first" item in a Collection because it is .. well simply a collection.

From the Java doc's Collection.iterator() method:

There are no guarantees concerning the order in which the elements are returned...

So you can't.

If you use another interface such as List, you can do the following:

String first = strs.get(0);

But directly from a Collection this is not possible.

link|flag
2  
I don't think get(int n) is defined for Collection – Rosarch Nov 4 at 2:27
You're right, I miss that point. I have updated the answer. You can't! (unless the Collection is implemented by some underlaying class that allows provides the guarantee ) – Oscar Reyes Nov 4 at 2:33
get is not in the Collection interface – argherna Nov 4 at 2:33
@arghena: Yeap. I have updated the answer to emphasize the alternative. – Oscar Reyes Nov 4 at 2:40
2  
Oscar, I think you're overstating the case. The first element of a Collection may be arbitrary in a few cases like HashSet, but it is well-defined: it's .iterator().next(). It's also stable, in every collection implementation I've ever seen. (related: note that while Set doesn't guarantee order, every single subtype of Set in the JDK except HashSet does.) – Kevin Bourrillion Nov 4 at 16:54
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.