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