這裏的時候是我的課:執行比較,但有例外,調用Arrays.sort
public static class __9_7_Person implements Comparator<__9_7_Person> {
private int height;
private int weight;
public __9_7_Person(int height, int weight) {
this.height = height;
this.weight = weight;
}
public int compare(__9_7_Person p1, __9_7_Person p2) {
if (p1.height != p2.height) {
return p1.height - p2.height;
}
else {
return p1.weight - p2.weight;
}
}
}
我然後創建一個這樣的數組:
__9_7_Person p[] = {new __9_7_Person(60, 100),
new __9_7_Person(70, 150),
new __9_7_Person(56, 90),
new __9_7_Person(75, 190),
new __9_7_Person(60, 95),
new __9_7_Person(68, 110),
};
但有例外,當我打電話Arrays.sort( p):「線程中的異常」main「java.lang.ClassCastException:ch_9 $ __ 9_7_Person不能轉換爲java.lang.Comparable」
我希望這些不是你的類的實際名稱,下劃線和所有... – 2012-07-08 18:45:37