Why doesn't java.util.Map interface extend the java.util.Collection interface? Isn't a java.util.Map a collection of Key-Value pairs?
|
|
|||||
|
|
Collection assume elements of one value. Map assumes entries of key/value pairs. They could have been engineered to re-use the same common interface however some methods they implement are incompatible e.g.
You could model a Map as a collection of entries, which is what Map.entrySet() does. There are some methods in common; size(), isEmpty(), clear(), putAll/addAll() but these are unlikely to have much value as a stand alone interface. (Again Map.entrySet() can be used instead) |
|||
|
|
|
Because the The two interfaces have very different semantics. If you need the values or the keys of a |
|||
|
|
|
Because some methods declared in |
|||
|
|
|
All collections must implement a default constructor and another constructor that takes a collection as a parameter. You can't construct a map with any other collection other than a map. Since Map imposes restrictions on the type of objects it can hold, you can't implement a map as a collection. |
|||||
|
Map is a key/value pair whereas Collection is a group of collection. The reason why Map doesn't extend Collections interface is that Also, what would Collection's |
|||
|
|
