我正在尝试编写一个需要两个Comparable
s 的通用 max 函数。
到目前为止我有
public static <T extends Comparable<?>> T max(T a, T b) {
if (a == null) {
if (b == null) return a;
else return b;
}
if (b == null)
return a;
return a.compareTo(b) > 0 ? a : b;
}
这无法编译
The method compareTo(capture#5-of ?) in the type Comparable<capture#5-of ?> is not applicable for the arguments (T)
我认为这是在说?
inComparable<?>
可能被解释为参数 a 的一种类型,而参数 b 的另一种类型,因此它们无法进行比较。
我怎样才能把自己从这个洞里挖出来?