Java中的Arrays類提供了一個(gè)靜態(tài)方法sort(),用于對(duì)數(shù)組進(jìn)行排序。根據(jù)不同的數(shù)據(jù)類型,sort()方法有以下幾種重載形式:
1.對(duì)整型數(shù)組進(jìn)行排序:
public static void sort(int[] a)
2.對(duì)整型數(shù)組的一部分進(jìn)行排序:
public static void sort(int[] a, int fromIndex, int toIndex)
3.對(duì)長(zhǎng)整型數(shù)組進(jìn)行排序:
public static void sort(long[] a)
4.對(duì)浮點(diǎn)型數(shù)組進(jìn)行排序:
public static void sort(float[] a)
5.對(duì)雙精度浮點(diǎn)型數(shù)組進(jìn)行排序:
public static void sort(double[] a)
6.對(duì)對(duì)象數(shù)組進(jìn)行排序,需要指定一個(gè)實(shí)現(xiàn)了Comparable接口的類:
public static <T extends Comparable<? super T>> void sort(T[] a)
7.對(duì)對(duì)象數(shù)組的一部分進(jìn)行排序:
public static <T extends Comparable<? super T>> void sort(T[] a, int fromIndex, int toIndex)
8.對(duì)對(duì)象數(shù)組進(jìn)行排序,需要指定一個(gè)Comparator接口的實(shí)現(xiàn)類:
public static <T> void sort(T[] a, Comparator<? super T> c)
9.對(duì)對(duì)象數(shù)組的一部分進(jìn)行排序,需要指定一個(gè)Comparator接口的實(shí)現(xiàn)類:
public static <T> void sort(T[] a, int fromIndex, int toIndex, Comparator<? super T> c)
這些方法可以根據(jù)不同的排序需求,對(duì)Java中的數(shù)組進(jìn)行排序。