I am trying to do something like this
final Map<String, ? extends Object> params = new HashMap<String, ? extends Object>();
but java compiler complaining about that "cannot instantiate the type HashMap();
whats wong with it..?
|
|
|
Because you do not know what type the If you want to be able to put
For a good intro on the subject, take a look at the Java Language tutorial on generics, esp. this page and the one after it. |
|||||||||
|
does not evaluate to any Type. so you can not mention like that. 1. If you want AnyType extends Object, then why do'nt you simply pass Object. as anyType that extends Object is also an Object. and by default every Java class Type extends Object. 2. If you want specifically TypeA extends TypeB, then you can do like
|
|||
|
|