我有这个界面
public interface IDataPoint<T> extends Comparable<T> {
public T getValue();
}
而这个实现......
public class IntegerDataPoint implements IDataPoint<Integer> {
// ... some code omitted for this example
public int compareTo(Integer another) {
// ... some code
}
}
和另一堂课……
public class HeatMap<X extends IDataPoint<?> {
private List<X> xPoints;
}
现在我想在xPoints
列表中使用 Collections.max (和类似的),但这不起作用,可能是因为我的泛型都搞砸了。
有什么建议可以解决这个问题(没有Comparator
)?
Collections.max(xPoints);
给我这个错误:
Bound mismatch: The generic method max(Collection<? extends T>) of type Collections is not applicable for the arguments (List<X>). The inferred type X is not a valid substitute for the bounded parameter <T extends Object & Comparable<? super T>>