集合排序
Posted 永远相信美好的事情即将发生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了集合排序相关的知识,希望对你有一定的参考价值。
<1>对List<T>排序:
T 实现comparable接口,重写 compareTo 方法
调用collections.sort(list);
<2>使用比较器Comparator
Collections.sort(studentArr, new Comparator<Object>() {
public int compare(Object o1, Object o2) {
Student s1 = (Student) o1;
Student s2 = (Student) o2;
if(){reutrn 1};
else if(){return -1};
return 0;
}
});
以上是关于集合排序的主要内容,如果未能解决你的问题,请参考以下文章