Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The signature of java.util.Collections.max looks like this:

public static <T extends Object & Comparable<? super T>> T max(Collection collection);

From what I understand, it basically means that T must be both a java.lang.Object and a java.lang.Comparable<? super T>>,

However, since every java.lang.Comparable is also an java.lang.Object, what is the difference between the signature above and this below? :

public static <T extends Comparable<? super T>> T max(Collection collection);

share|improve this question

1 Answer

up vote 19 down vote accepted

To preserve binary compatibility: It's completely described here. The second signature actually changes the return type of the method to Comparable and it loses the generality of returning an Object. The original signature preserves both.

share|improve this answer
Thanks for the link =) Btw are you aware of any tools to examine the erased signatures after compilation? – Pacerier Apr 26 '12 at 18:55
Not that I know of, but maybe this can give some clues on the topic. I also suggest reading the section on "Type Erasure" at Angelika Langer's Generics FAQ. – nobeh Apr 26 '12 at 19:02
Ok thanks for the help =) – Pacerier Apr 26 '12 at 19:13

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.