我不明白为什么我得到一个Unchecked cast from Object to Compareable<Object>
因为它是在一个只输入的区域内,如果该实例是一个Compareable类型。有人可以向我解释一下,也许可以给出解决方案,谢谢。
我的代码看起来像这样。问题出在第8和第9行:
public int compare(Object one, Object two) {
if (one instanceof Vector && two instanceof Vector) {
Vector<? extends Object> vOne = (Vector<?>)one;
Vector<? extends Object> vTwo = (Vector<?>)two;
Object oOne = vOne.elementAt(index);
Object oTwo = vTwo.elementAt(index);
if (oOne instanceof Comparable && oTwo instanceof Comparable) {
Comparable<Object> cOne = (Comparable<Object>)oOne;
Comparable<Object> cTwo = (Comparable<Object>)oTwo;
if (ascending) {
return cOne.compareTo(cTwo);
} else {
return cTwo.compareTo(cOne);
}
}
}
return 1;
}
答案 0 :(得分:1)
当它产生未经检查的警告时,因为它不知道您的对象是Comparable
到Object
。事实上它是不太可能的,例如, Integer
是Comparable<Integer>
,但这是获取此代码进行编译的最简单方法
我建议你使用
@SuppressWarning("checked")
Comparable<Object> cOne = (Comparable<Object>)oOne;
或
Comparable cOne = (Comparable) oOne;
顺便说一句,您最后不能return 1
,因为您确保compare(a, b) > 0
然后compare(b, a) < 0