Java.util.Arrays.sort()


描述

所述java.util.Arrays.sort(Object[] a, int fromIndex, int toIndex)方法根据其元素的自然顺序排序指定的对象升序排列的数组的指定范围内,。要排序的范围从索引fromIndex(包括)延伸到index toIndex,exclusive。

声明

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

public static void sort(Object[] a, int fromIndex, int toIndex)

参数

a - 这是要排序的数组。

fromIndex - 这是要排序的第一个元素(包括)的索引。

toIndex - 这是要排序的最后一个元素(不包括)的索引。

返回值

此方法不返回任何值。

异常

IllegalArgumentException − if fromIndex > toIndex

ArrayIndexOutOfBoundsException − if fromIndex < 0 or toIndex > a.length

ClassCastException - 如果数组包含不可相互比较的元素(例如,字符串和整数)

实例

以下示例显示了java.util.Arrays.sort()方法的用法。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing unsorted Object array
      Object ob[] = {27, 11, 5, 44};

      // let us print all the elements available in list
      for (Object number : ob) {
         System.out.println("Number = " + number);
      }

      // sorting array from index 1 to 3
      Arrays.sort(ob, 1, 3);

      // let us print all the elements available in list
      System.out.println("Object array with some sorted values(1 to 3) is:");
      for (Object number : ob) {
         System.out.println("Number = " + number);
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果

Number = 27
Number = 11
Number = 5
Number = 44
Object array with some sorted values(1 to 3) is:
Number = 27
Number = 5
Number = 11
Number = 44