java.util.Collections.sort()方法範例


sort(List<T>) 方法用於指定列表按升序進行排序,根據其元素的自然順序。

宣告

以下是java.util.Collections.sort()方法的宣告。

public static <T extends Comparable<? super T>> void sort(List<T> list)	

引數

  • list--這是要排序的列表。

返回值

  • NA

異常

  • ClassCastException--丟擲如果列表中包含不可相互比較的(例如,字串和整數)元素。

  • UnsupportedOperationException--如果丟擲指定列表的列表疊代器不支援set操作。

例子

下面的例子顯示java.util.Collections.sort()方法的使用

package com.yiibai;

import java.util.*;

public class CollectionsDemo {
     public static void main(String args[]) {
      // create an array of string objs
      String init[] = { "One", "Two", "Three", "One", "Two", "Three" };
      
      // create one list
      List list = new ArrayList(Arrays.asList(init));
      
      System.out.println("List value before: "+list);
      
      // sort the list
      Collections.sort(list);
      
      System.out.println("List value after sort: "+list);
   }
}

現在編譯和執行上面的程式碼範例,將產生以下結果。

List value before: [One, Two, Three, One, Two, Three]
List value after sort: [One, One, Three, Three, Two, Two]