其他分享
首页 > 其他分享> > Arrays.sort()的用法

Arrays.sort()的用法

作者:互联网

1、Arrays.sort(int[] a)

对数组进行从小到大排序,默认字典序排序(ASCII)

2、Arrays.sort(int[] a, int fromIndex, int toIndex)

对数组的a[fromIndex,toIndex-1]排序

3、public static <T> void sort(T[] a,int fromIndex,int toIndex, Comparator<? super T> c)

自定义排序方法,通过实现Comparator接口自定义compare方法

4、对字符串排序:

Arrays.sort(str, String.CASE_INSENSITIVE_ORDER);

Arrays.sort(str, Collections.reverseOrder()); 等

标签:sort,toIndex,Arrays,fromIndex,用法,int,排序
来源: https://www.cnblogs.com/zxkj/p/15714778.html