vote up 10 vote down star

I'm sure there's a good reason, but could someone please explain why the java.util.Set interface lacks get(int Index), or any similar get() method?

It seems that sets are great for putting things into, but I can't find an elegant way of retrieving a single item from it.

If I know I want the first item, I can use set.iterator().next(), but otherwise it seems I have to cast to an Array to retrieve an item at a specific index?

What are the appropriate ways of retrieving data from a set? (other than using an iterator)

I'm sure the fact that it's excluded from the API means there's a good reason for not doing this -- could someone please enlighten me?

EDIT: Some extremely great answers here, and a few saying "more context". The specific scneario was a dbUnit test, where I could reasonalby assert that the returned set from a query had only 1 item, and I was trying to access that item.

However, the question is more valid without the scenario, as it remains more focussed : What's the difference between set & list.

Thanks to all for the fantastic answers below.

flag

77% accept rate
Why would you get an element from a set by index? Are you trying to use a set as a sorted array? – MSN Apr 20 at 19:41
The particular instance here is a dbUnit test against a Set returned from a hibernate call. In my test, it's reasonable to assume (because I assert it) that the object returned is in a specific order, because of my IDataSet I used to set it up. It's a non-typical case, but lead to my curiousty about the API. – Marty Pitt Apr 20 at 19:48
Adding things in a specific order doesn't mean they'll stay that way, unless you're using a custom Set implementation. – mmyers Apr 20 at 19:55
1  
Or LinkedHashSet, of course. – mmyers Apr 20 at 20:06
"If I know I want the first item, I can use set.iterator().next()" - This line doesn't actually make sense. You are really saying "If I know I want the first item, by the implementation's definition of the first item, then I can...". Set itself is unordered, so indexed access doesn't make sense. Now if there were an ArrayListSet, that would make more sense (just cast to "List" and be happy). Perhaps you could give more context for the question? – jsight Apr 20 at 20:25

7 Answers

vote up 40 vote down check

Because sets are not ordered. Some implementations are, but that is not a general property of sets.

If you're trying to use sets this way, you should consider using a list instead.

(Edit: Several commenters thought I wasn't strong enough on this last point. From the comments: "Consider it, then do it.")

link|flag
I'd revise that last comment to "you should use a list instead" – matt b Apr 20 at 19:27
@matt b: No, I think he should consider it. Thinking is good. ;) – mmyers Apr 20 at 19:28
6  
Consider it, then do it. – d03boy Apr 20 at 19:34
4  
"Consider" is the correct phrasing. There are two possible problems (a) He is using a set when he should be using something else, or (b) He is trying to do things with Sets that they don't support but that he could do a different way. It is good to consider which of these is the case. – kenj0418 Apr 20 at 20:20
There's your guru badge. :) – raven Aug 5 at 15:38
vote up 5 vote down

Just adding one point that was not mentioned in mmyers' answer.

If I know I want the first item, I can use set.iterator().next(), but otherwise it seems I have to cast to an Array to retrieve an item at a specific index?

What are the appropriate ways of retrieving data from a set? (other than using an iterator)

You should also familiarise yourself with the SortedSet interface (whose most common implementation is TreeSet).

A SortedSet is a Set (i.e. elements are unique) that is kept ordered by the natural ordering of the elements or using some Comparator. You can easily access the first and last items using first() and last() methods. A SortedSet comes in handy every once in a while, when you need to keep your collection both duplicate-free and ordered in a certain way.

Edit: If you need a Set whose elements are kept in insertion-order (much like a List), take a look at LinkedHashSet.

link|flag
I like LinkedHashSet myself. But yes, this is good to mention. +1 – mmyers Apr 20 at 19:35
Thanks, I tweaked the answer a little. (Seems I had some aspects of TreeSet confused with those of LinkedHashSet.) – Jonik Apr 20 at 20:07
vote up 3 vote down

The only reason I can think of for using a numerical index in a set would be for iteration. For that, use

for(A a : set) { 
   visit(a); 
}
link|flag
Not true, what about accessing a random element? – unknown (google) Aug 25 at 21:30
Ha, ha. good point :) but that would be highly prone to misuse, i'm sure. – Hugo Aug 27 at 13:49
vote up 3 vote down

I'm not sure if anybody has spelled it out exactly this way, but you need to understand the following:

There is no "first" element in a set.

Because, as others have said, sets have no ordering. A set is a mathematical concept that specifically does not include ordering.

Of course, your computer can't really keep a list of stuff that's not ordered in memory. It has to have some ordering. Internally it's an array or a linked list or something. But you don't really know what it is, and it doesn't really have a first element; the element that comes out "first" comes out that way by chance, and might not be first next time. Even if you took steps to "guarantee" a particular first element, it's still coming out by chance, because you just happened to get it right for one particular implementation of a Set; a different implementation might not work that way with what you did. And, in fact, you may not know the implementation you're using as well as you think you do.

People run into this ALL. THE. TIME. with RDBMS systems and don't understand. An RDBMS query returns a set of records. This is the same type of set from mathematics: an unordered collection of items, only in this case the items are records. An RDBMS query result has no guaranteed order at all unless you use the ORDER BY clause, but all the time people assume it does and then trip themselves up some day when the shape of their data or code changes slightly and triggers the query optimizer to work a different way and suddenly the results don't come out in the order they expect. These are typically the people who didn't pay attention in database class (or when reading the documentation or tutorials) when it was explained to them, up front, that query results do not have a guaranteed ordering.

link|flag
Heh, and of course the ordering usually changes right after the code goes into production, when it's too slow, so they add an index to speed up the query. Now the code runs fast, but gives the wrong answers. And nobody notices for three or four days...if you're lucky. If you're not lucky, nobody notices for a month... – TMN Apr 21 at 0:36
vote up 2 vote down

This kind of leads to the question when you should use a set and when you should use a list. Usually, the advice goes:

  1. If you need ordered data, use a list
  2. If you need unique data, use a set
  3. If you need both, use a sorted set

A fourth case that appears often is that you need neither. In this case you see some programmers go with lists and some with sets. Personally I find it very harmful to see set as a list without ordering - because it is really a whole other beast. Unless you need stuff like set uniqueness or set equality, always favor lists.

link|flag
if you are unspecific, accept Collection<T> or even Iterable<T> and initialize as a List. – Andreas Petersson Apr 28 at 7:31
vote up 1 vote down

That is because Set only guarantees uniqueness, but says nothing about the optimal access or usage patterns. Ie, a Set can be a List or a Map, each of which have very different retrieval characteristics.

link|flag
vote up 0 vote down

some data structures are missing from the standard java collections.

Bag (like set but can contain elements multiple times)

UniqueList (ordered list, can contain each element only once)

seems you would need a uniquelist in this case

if you need flexible data structures, you might be interested in Google Collections

link|flag

Your Answer

Get an OpenID
or

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