I am a new java learner. Recently I was reading Generic programming and got my self confused with this...
A<T extends B> and A<? extends B>
|
|
First of all, those are completely different constructs used in different contexts.
It declares generic type
Variable declaration such as For example, given this declaration
you can:
However, you can't put anything into list
|
|||||||
|
|
When you write When you write I hope I'm clear, since these concepts are complicated. |
|||
|
Generics is a complicated subject in general, and especially in Java. But basically the difference is: T extends BThere is a specific type T, it is just limited to being B or a subclass of B, but it is a specific know type. Any plain old generic declaration is like saying: ? extends BThis means that the generic type is unknown, exactly, but what we can say about it is that it extends B. It may be B, it may be a subclass of B. With a wildcard and the word extends, it means that you can get B out of the object, but you cannot put anything in the object in a type safe way. (? super B means the opposite - you can put something in a method parameter that is a B or a superclass of B, but you cannot be sure what the return value of a method would be.) |
|||||
|
|
(a long comment, not an answer) Totally different things. The similarity in syntax is a grave mistake made by Java. And this mistake leads to a bigger mistake - many people try to understand wildcard as a type parameter (i.e. wildcard capture) There was no such thing as Well it is damn verbose and ugly. If an API has a few wildcard, it looks like vomit of symbols. But the worse thing is the confusion it causes. It looks like a type parameter. And Java did that on purpose! Java did not believe that its programmers can ever understand covariant types, so syntactically it made the convariant types look like parameterized types, to guide programmers into the erroneous way of understanding, that, admittedly, can be useful in occasions, but ultimately makes people clueless. |
|||
|
|