Can someone please explain this rather cryptic method signature from the Collections class?
public static <T extends Object & Comparable<? super T>>
T min(Collection<? extends T> coll)
Thank you!
|
Can someone please explain this rather cryptic method signature from the
Thank you! |
||||
|
|
|
Type "T" is an Object and implements the "Comparable" interface; the min method returns an object of type T and takes a Collection of T as input. |
|||
|
|
|
The part of the method signature after
EDIT: As @Petros said in the comment below, the inclusion of The following chart [Source] may help understand this better:
|
|||||||||||||
|
|
In addition to Adam's description. Parameter T is needed for argument collection: Collection So, as minimum we need the following method prototype:
But we have to be able to compare the collection element. So, each element must implement Comparable and our prototype becomes more complicated:
But comparable interface itself is parametrized. To avoid compilation warning we have to say:
Due to each class in Java automatically extends Object I really do not understand why did they make this prototype more complicated, i.e. wrote explicitly that T extends Object. Typically generics definitions like
are used when A and B are interfaces. I am not sure that my answer helps because probably it asks yet another question. I'd be happy of somebody can explain why return type
was not complicated enough and they said
|
|||
|
|