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.tutorialspoint; 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]