| Author |
Question in Generic Methods
|
Pranav Pal
Ranch Hand
Joined: Nov 04, 2007
Posts: 74
|
|
I have following code:
Compiling the above code gives following error:
Test2.java:19: process(java.util.Map<java.lang.String,java.util.HashMap<java.lang.Long,? extends core.Fruit>>) in core.Test2 cannot be applied to (java.util.Map<java.lang.String,java.util.HashMap<java.lang.Long,core.Fruit>>)
process(buildingblocksmap);
^
1 error
Can anybody please explain the reason of this error?
|
Hakuna Matata!
|
 |
Sai Hegde
security forum advocate
Ranch Hand
Joined: Oct 26, 2010
Posts: 183
|
|
The process method signature needs to be changed to this.
|
 |
Matt Cartwright
Ranch Hand
Joined: Aug 25, 2008
Posts: 149
|
|
Sai Hegde wrote:The process method signature needs to be changed to this.
got it wrong first, but yes that works....
|
 |
Sai Hegde
security forum advocate
Ranch Hand
Joined: Oct 26, 2010
Posts: 183
|
|
I think you are confusing the compiler here...
Try this -
|
 |
Matt Cartwright
Ranch Hand
Joined: Aug 25, 2008
Posts: 149
|
|
|
Sai, you're right, the original method definition works alright
|
 |
 |
|
|
subject: Question in Generic Methods
|
|
|