What kind of List will automatically eliminate duplicates when they are added.
e.g. for a List if I add 1,2,3,4,5,1,2,3 = the List should just contain just 1,2,3,4,5
|
What kind of List will automatically eliminate duplicates when they are added. e.g. for a List if I add 1,2,3,4,5,1,2,3 = the List should just contain just 1,2,3,4,5 |
|||
|
|
|
Have a look at LinkedHashSet |
|||||||||||||||||||||
|
|
A Set will automatically eliminate duplicates, but it is a Collection rather than a List. I don't think there is a List that eliminates duplicates in the standard library. The Annotated Outline of the Collections Framework page of the Java 6 SE API documentation says that "Duplicates are generally permitted." |
||||
|
|
|
You could extend the existing
EDIT As @Alnitak mentioned: don't forget to sync your backing HashSet whenever an element is removed. |
|||||||
|
|
You want a Set maybe, e.g. HashSet(), rather than a List? No List will eliminate duplicates, by definition Lists permit them. |
|||
|
|
|
Like the above poster said, there is no List with Unique handling. Look at List (Java Platform SE 6)
|
|||||
|
|
Here is an extension of ArrayList that rejects duplicates:
The only thing I can't deal with is the set() method. My solution is to throw an Anyway, here's a test method:
|
|||
|
|