What is the fundamental difference between the Set<E> and List<E> interfaces?
|
|
|||||||||
|
|
|
|
||||||
|
|
|
A Set cannot contain duplicate elements while a List can. A List (in Java) also implies order. |
||
|
|
|
|
Conceptually we usually refer to an unordered grouping that allows duplicates as a Bag and doesn't allow duplicates is a Set. |
|||
|
|
A set is an unordered group of distinct objects — no duplicate objects are allowed. It is generally implemented using the hash code of the objects being inserted. (Specific implementations may add ordering, but the Set interface itself does not.) A list is an ordered group of objects which may contain duplicates. It could be implemented with an array, linked list, etc. |
||
|
|
|
|
Ordered lists of element (unique or not)
Lists of unique elements:
Both interfaces |
||
|
|
|
|
This might not be the answer you're looking for, but the JavaDoc of the collections classes is actually pretty descriptive. Copy/pasted:
|
||
|
|
|
|
Ordering... a list has an order, a set does not. |
||||||
|
|
|
All of the The |
||
|
