2

我有这个界面

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>>
4

1 回答 1

4

问题是Collections.max(Collection<? extends T>)希望 T 与自己相比,而不是其他类型。

在你的情况下IntegerDataPoint是可比的Integer,但不是IntegerDataPoint

您无法轻松解决此问题,因为IntegerDataPoint不允许同时Comparable<Integer>实施Comparable<IntegerDataPoint>

于 2012-04-18T14:20:11.543 回答