I have been wondering about the Map from java.util.
Why does values() method return a Collection while the keySet and entrySet return a Set?
What's the advantages/disadvantages of a Set and Collection?
|
I have been wondering about the Map from java.util. Why does values() method return a Collection while the keySet and entrySet return a Set? What's the advantages/disadvantages of a Set and Collection? |
|||
|
A set guarantees that a given entry can only exist in it once. A Collection doesn't. Since a Map has no uniqueness guarantees in terms of values, the set of them isn't really a set at all but would have to be a Collection. |
|||||
|
|
It's not really an issue of advantages and disadvantages -- it's what the keys, values and entries of a map represent that's important. Keys in a map are unique The keys in a Therefore, the keys are returned as a Values in a map are not necessarily unique On the other hand, the values of a For example, we could have an entry in a map with the key
Having duplicate values in a map is allowed. Therefore, we cannot use a Entries in a map are also unique The entries of the Further reading |
||||
|
|
|
Map internally manages Set of keys because keys are unique values aren't
Also See |
|||||||||||
|
|
A As already pointed out by others, |
|||
|
|
|
values() could be duplicated, so it is keySet() and entrySet() couldn't be duplicated, so they are ps: |
|||
|
|
Bagtype, this would be more appropriate here. – skaffman Jan 5 '11 at 16:02