I have a couple of questions about java generics wildcards:
1) whats the difference between
List<? extends T>
and
List<? super T>
2) What is a bounded wildcard and what is an unbounded wildcard?
Thanks!
|
feedback
|
|
In your first question, The Java Tutorials have some pretty good explanations of generics in the articles Wildcards and More Fun with Wildcards. | |||||||||||
feedback
|
|
Josh Bloch also has a good explanation of when to use From the presentation slides:
| |||||||
feedback
|
|
If you have a class hierarchy A, B a subclass of A and C ad D, both subclasses of B:
A bounded wildcard is like | |||
|
feedback
|