Java排序方法sort的使用详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java排序方法sort的使用详解相关的知识,希望对你有一定的参考价值。
原文:http://www.cnblogs.com/minshia/p/6283858.html
对数组的排序:
1
2
3
4
5
6
7
8
|
//对数组排序 public void arraySort(){ int [] arr = { 1 , 4 , 6 , 333 , 8 , 2 }; Arrays.sort(arr); //使用java.util.Arrays对象的sort方法 for ( int i= 0 ;i<arr.length;i++){ System.out.println(arr[i]); } } |
对集合的排序:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//对list升序排序 public void listSort1(){ List<Integer> list = new ArrayList<Integer>(); list.add( 1 ); list.add( 55 ); list.add( 9 ); list.add( 0 ); list.add( 2 ); Collections.sort(list); //使用Collections的sort方法 for ( int a :list){ System.out.println(a); } } //对list降序排序 public void listSort2(){ List<Integer> list = new ArrayList<Integer>(); list.add( 1 ); list.add( 55 ); list.add( 9 ); list.add( 0 ); list.add( 2 ); Collections.sort(list, new Comparator<Integer>() { public int compare(Integer o1, Integer o2) { return o2 - o1; } }); //使用Collections的sort方法,并且重写compare方法 for ( int a :list){ System.out.println(a); } }<br>注意:Collections的sort方法默认是升序排列,如果需要降序排列时就需要重写conpare方法 |
以上是关于Java排序方法sort的使用详解的主要内容,如果未能解决你的问题,请参考以下文章
Java基础:Collections.sort的两种⽤法排序详解
Python 使用列表的sort()进行多级排序实例演示,list的sort()排序方法使用详解,python3中sort()的cmp自定义排序方法,sort()的逆序倒叙排序方法