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]