我的问题是关于如何通过其中一个属性对具有自定义对象的 ArrayList 进行排序,但从自定义条件开始。
让我更好地解释一下,这是我的代码:
public static void sortArrayListByProperty(ArrayList colorList){
Collections.sort(colorList, new Comparator(){
public int compare(Object emp1, Object emp2){
int intValue1 = ((ColorCounter)emp1).getIntColorValue();
int intValue2 = ((ColorCounter)emp2).getIntColorValue();
if(intValue1 < intValue2)
return 1;
else if(intValue1 > intValue2)
return -1;
else
return 0;
}
});
}
这会将我的 ArrayList 从大到小排序。
但我想要的是从我将指定的起始编号对我的 ArrayList 进行排序。
例如,如果 ArrayList 包含
5 3 9 1 14
假设我希望数字从 3 开始,那么我需要
3 5 9 14 1
我希望足够清楚...
是否可以?
@Joachim Sauer
谢谢,我稍微编辑了您的代码并更改了返回值,它起作用了!
编辑代码:
if (cv1 >= threshold && cv2 < threshold) {
return -1;
} else if (cv2 >= threshold && cv2 < threshold) {
return -1;
} else if (cv1 < cv2) {
return 1;
} else if (cv1 > cv2) {
return 1;
} else {
return 0;
}
测试示例:
16777215
16448250
15790320
4013373
按 15790320 排序:
15790320
16448250
16777215
4013373