Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

3 Answers

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.

share|improve this answer

The part of the method signature after static and before return type is called type constraints. In your case, the type constraints specifies that the type T should be subclass of Object and should implement interface Comparable.

(The Object part is redundant; and hence the constraint can be written more briefly as <T extends Comparable<? super T>>).

<? super T> and <? extends T> are called variance annotations. Read more about it here.


EDIT: As @Petros said in the comment below, the inclusion of extends Object might seem redundant, but it changes the erasure of T to be Object rather than Comparable.

The following chart [Source] may help understand this better:

Type Parameters                              Type Erasure
-------------------------------------------------------------
<T>                                          Object
<T extends Number>                           Number
<T extends Comparable<T>>                    Comparable
<T extends Cloneable & Comparable<T>>        Cloneable
<T extends Object & Comparable<T>>           Object
<S, T extends S>                             Object, Object
share|improve this answer
So, the <T extends Object> is redundant and it could just be <T>? – Petros Nov 25 '10 at 9:26
@Petros: Every class in Java is subclass of Object. Hence the Object part is redundant. The other constraint - extends Comparable - needs to be retained. – missingfaktor Nov 25 '10 at 11:13
@missingfactor: Actually I just found out that <T extends Object> is not redundant. It says to the compiler that the erasure of T should be Object instead of Comparable. – Petros Nov 26 '10 at 8:24
Hi, in The Java Programming Language says "The inclusion of "extends Object " might seem redundant, but it changes the erasure of T to be Object rather than Comparable." – Petros Nov 26 '10 at 11:49
1  
@Petros: Yes, you are correct. I didn't know about this feature. Thanks so much for pointing out. Learn something new every day! :-) – missingfaktor Nov 26 '10 at 12:08

In addition to Adam's description. Parameter T is needed for argument collection: Collection

So, as minimum we need the following method prototype:

public static <T> T min(Collection<? extends T> coll)

But we have to be able to compare the collection element. So, each element must implement Comparable and our prototype becomes more complicated:

public static <T extends Comparable> T min(Collection<? extends T> coll)

But comparable interface itself is parametrized. To avoid compilation warning we have to say:

public static <T extends Comparable<T>> T min(Collection<? extends T> coll)

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

T extends A & B

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

<T extends Comparable<T>> T

was not complicated enough and they said

<T extends Object & Comparable<? super T>> T
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.