I have a couple of questions about Java generic wildcards:
whats the difference between
List<? extends T>andList<? super T>What is a bounded wildcard and what is an unbounded wildcard?
|
I have a couple of questions about Java generic wildcards:
|
||||
|
|
|
In your first question, The Java Tutorials have some pretty good explanations of generics in the articles Wildcards and More Fun with Wildcards. |
|||||||||||||
|
|
Josh Bloch also has a good explanation of when to use From the presentation slides:
|
|||||||
|
|
If you have a class hierarchy A, B is a subclass of A, and C and D both are subclass of B like below
Then
A bounded wildcard is like |
||||
|
|
|
You may find my tutorial on this topic much deeper and helpful. |
|||
|
|