Is there any difference between
List<Map<String, String>>
and
List<? extends Map<String, String>>
?
If there is no difference, what is the benefit of using ? extends?
|
Is there any difference between
and
? If there is no difference, what is the benefit of using |
|||||||||||||||||||
|
|
The difference is that, for example, a
is a
but not a
So:
You would think a Suppose you could do:
So this is why a |
|||||||||||||||||||
|
|
You cannot assign expressions with types such as (If you want to know why you can't assign |
|||||||||||||||
|
|
What I'm missing in the other answers is a reference to how this relates to co- and contravariance and sub- and supertypes (that is, polymorphism) in general and to Java in particular. This may be well understood by the OP, but just in case, here it goes: CovarianceIf you have a class I tend to think of covariance as standard polymorphism what you would expect to work without thinking, because:
The reason of the error is, however, correct:
ContravarianceThe reverse of co-variance is contravariance. Where in covariance the parameter types must have a subtype relationship, in contravariance they must have a supertype relationship. This can be considered as an inheritance upper-bound: any supertype is allowed up and including the specified type:
This can be used with Collections.sort:
You could even call it with a comparer that compares objects and use it with any type. When to use contra or co-variance?A bit OT perhaps, you didn't ask, but it helps understanding answering your question. In general, when you get something, use covariance and when you put something, use contravariance. This is best explained in an answer to Stack Overflow question How would contravariance be used in Java generics?. So what is it then with
|
|
Today, I have used this feature, so here's my very fresh real-life example. (I have changed class and method names to generic ones so they won't distract from the actual point.) I have a method that's meant to accept a
But it want to actually call it with Now here come generics to the rescue, because it works as intended if I use this method signature instead:
or shorter, if you don't need to use the actual type in the method body:
This way, |
||||
|
|
|
As you mentioned, there could be two below versions of defining a List:
2 is very open. It can hold any object type. This may not be useful in case you want to have a map of a given type. In case someone accidentally puts a different type of map, for example, In order to ensure that |
||||
|
|