Is it possible to have a HashMap return a default value for all keys that are not found in the set?
I am using Java.
|
|
There's no Map implementation that does this exactly but it would be trivial to implement your own by extending HashMap:
|
|||||||||||||||
|
|
Use Commons' DefaultedMap if you don't feel like reinventing the wheel. |
|||||||||
|
|
It does this by default. It returns |
|||||||
|
|
You can simply create a new class that inherits HashMap and add getDefault method. Here is a sample code:
I think that you should not override get(K key) method in your implementation, because of the reasons specified by Ed Staub in his comment and because you will break the contract of Map interface (this can potentially lead to some hard-to-find bugs). |
|||
|
|
|
Not directly, but you can extend the class to modify its get method. Here is a ready to use example: http://www.java2s.com/Code/Java/Collections-Data-Structure/ExtendedVersionofjavautilHashMapthatprovidesanextendedgetmethodaccpetingadefaultvalue.htm |
|||
|
|