sort(List<T>,Comparator<? super T>)方法实例
sort(List<T>,Comparator<? super T>) 方法根据引起指定比较器的顺序使用指定的列表进行排序。
声明
以下是java.util.Collections.sort()方法的声明。
public static <T> void sort(List<T> list,Comparator<? super T> c)
参数
-
list--该系统的设立是要排序的列表。
-
c--该系统的设立是比较器,以确定列表中的顺序。
返回值
-
NA
异常
-
ClassCastException--抛出如果列表中包含不可相互比较的元素使用指定的比较。
-
UnsupportedOperationException--如果抛出指定列表的列表迭代器不支持set操作。
例子
下面的例子显示java.util.Collections.sort()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create linked list object LinkedList<Integer> list = new LinkedList<Integer>(); // populate the list list.add(-28); list.add(20); list.add(-12); list.add(8); // sort the list Collections.sort(list, null); System.out.println("List sorted in natural order: "); for(int i : list){ System.out.println(i+ " "); } } }
现在编译和运行上面的代码示例,将产生以下结果。
List sorted in natural order: -28 -12 8 20