What types of data types are admissible to use as keys in maps in java? Is it ok to use a double? How about a String?
|
Check out the API as there may be limitations on permissible types for keys depending on the specific map. Also, you can only use reference types but not primitive types. So double won't work, but Double is fine. Finally, the key should preferably not be mutable as this can cause aberrant behavior. |
|||
|
|
|
You can use any object type. But in order to get correct behavior the type has to have a hashCode() and equals() functions correctly implemented. So if you want to use |
|||
|
|
|
The caveat for abitary object in a map is, that unless the |
|||
|
|
|
you must use an object String is okey since it's a Class |
|||
|
|
|
For a key you can use any |
||||
|
|
|
Primitive data types are not allowed, better you Wrapper class to store your data in map. Moreover, until and unless you override your equal and hashcode method, using map is of not much use. |
|||
|
|
