What's the difference between:
SomeClass<T extends OtherClass>
and
SomeClass<T super OtherClass>
|
Sun says (from Using and Programming Generics in J2SE 5.0)
More Fun with Wildcards gives some good examples to all three types. Another good example (taken from the video recommended by @Adrian) is:
Here you can see the difference between For the method For the method |
||||
|
|
|
The difference is in the answer to the question "Which types are subtypes of
the subtypes are all those
include SomeClass<LinkedList> and SomeClass<ArrayList>. But with
the subtypes are all those
include |
|||
|
|
|
tangens' answer is correct, this is just (perhaps) useful information to accompany that answer. There is a good explanation of how to use the two different wildcards in Josh Bloch's Effective Java 2nd Edition. It is also described in this video. A mnemonic he uses is PECS - Producer Extends, Consumer Super. This is explained in the video and the book. This is a paraphrasing of one of the slides used in the talk: PECS - Producer
This only applies to input parameters, don't use wildcard types as return types. |
||||
|
|
|
||||
|
|
SomeClass<T super OtherClass>– newacct Jun 30 '12 at 9:23