I have a map like the one below
final Map<String, ? extends Object> map
Can anyone tell me why this operation is not possible..?
productMap.put("min", String.valueof(34));
What should be the turnaround...
|
I have a map like the one below
Can anyone tell me why this operation is not possible..?
What should be the turnaround... |
||||
|
You've told the compiler that the map values will be some specific subtype of Object. ? could be anything -- you could do:
So String might be invalid. You probably want the simpler Map which does allow any value. Or you can "cheat" and do a cast which hides the generic type:
But that trick is not best practice & to be used sparingly if at all. |
|||
|
|
|
You can't add any object to a Map because the compiler knows the value is some class which extends Object, but doesn't know which one.
Instead you can use
|
|||
|
|
|
The wildcard provides flexibility (you can now assign a See here for a good tutorial. |
|||
|
|
|
By declaring the map as
I think this example makes it clear why the compiler forbids inserting strings into the map: The value type is unspecified in the declaration. |
|||
|
|
? extends Object, a very specific thing which you don't have any information about. – Atreys Aug 5 '11 at 13:52