标签: java generics
这是max()类中Collections的签名:
max()
Collections
public static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll)
我想知道的是,为什么T具有明确的上限Object,而Object已经是所有类型的超类型。
T
Object