Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question
because it doesn't have to be a string?! – Jacob Aug 5 '11 at 13:26
then what it has to be... – Saurabh Kumar Aug 5 '11 at 13:26
@Saurabh, it has to be a ? extends Object, a very specific thing which you don't have any information about. – Atreys Aug 5 '11 at 13:52

4 Answers

up vote 1 down vote accepted

You've told the compiler that the map values will be some specific subtype of Object. ? could be anything -- you could do:

Map<String,? extends Object> map = new HashMap<String,Integer>();

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:

((Map)productMap).put("min", String.valueof(34));

But that trick is not best practice & to be used sparingly if at all.

share|improve this answer

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.

Map<String, ? extends Object> map = new HashMap<String, Integer>();
Object val = map.get("min"); // this is ok.
map.put("min", Integer.toString(34)); // not allowed.

Instead you can use

Map<String, Object> map = new HashMap<String, Object>();
Object val = map.get("min"); // this is ok.
map.put("min", Integer.toString(34)); // is ok.
share|improve this answer

The wildcard provides flexibility (you can now assign a HashMap<String, String> or a HashMap<String, Integer> to map) in exchange for a condition: you cannot write to map, because it doesn't know what the actual class of the values will be.

See here for a good tutorial.

share|improve this answer

By declaring the map as Map<String, ? extends Object>, you state that the second type is "anything which inherits from object". This is equivalent to declaring the map as Map<String, ?>. This declaration enables assignments like

final Map<String, ? extends Object> map = new HashMap<String, Integer>();

I think this example makes it clear why the compiler forbids inserting strings into the map: The value type is unspecified in the declaration.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.