位置:首頁 > Java技術 > Java.util包 > java.util.Collections.sort()方法實例

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]