What is the difference in following 2 lines?
public static <T extends Comparable<? super T>> int methodX(List<T> data)
public static <T> int methodX(List<? extends Comparable<? super T>> data)
|
|
|
Your first option is a "stricter" parametrisation. Meaning, you're defining the class The second way is syntactically different as well, with a The practical difference that comes out of this is one of inheritance. Your first method needs to be a type that is comparable to a super class of itself, whereas the second type need only be comparable to an unconditional/unrelated
If you change the |
||||
|
|
|
To the callers, the 2nd version is roughly equivalent to
Suppose a caller calls it with an arg whose concrete type
( If
Without further information, inference chooses Therefore from caller's POV, the two versions are not really different. Inside method body, the 2nd version does not have access to type parameter
are impossible in version#2; No such problem in version #1 with However we can forward #2 to #1
This is because for the compiler, type of [1] JLS3, 5.1.10 Capture Conversion [2] According to the javadoc of |
||||
|
|
|
The first method expects a list of elements which can be compared against their own class or a supertype of it. Say, real numbers can be compared to any kind of numbers:
A bit more restrictive, but still acceptable for your first method is the following:
But the second method is actually not very different from this version:
That is to say, you can replace |
|||
|
|