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