java.util.Collections.sort()


描述

的排序(List)方法用于排序指定列表按升序顺序,根据其元件的自然顺序。

声明

以下是java.util.Collections.sort()方法的声明。

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

参数

list - 这是要排序的列表。

返回值

NA

异常

ClassCastException - 如果列表包含不可相互比较的元素(例如,字符串和整数),则抛出此异常。

UnsupportedOperationException - 如果指定列表的list-iterator不支持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]