1
2
3
4
5
6
7
|
Collection ├List │├LinkedList │├ArrayList │└Vector │ └Stack └Set |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import java.util.ArrayList; import java.util.Collections; import java.util.List; public class TestCollections { public static void main(String args[]) { //注意List是实现Collection接口的 List list = new ArrayList(); double array[] = { 112 , 111 , 23 , 456 , 231 }; for ( int i = 0 ; i < array.length; i++) { list.add( new Double(array[i])); } Collections.sort(list); for ( int i = 0 ; i < array.length; i++) { System.out.println(list.get(i)); } // 结果:23 111 112 231 456 } } |
以上这篇浅谈Java中Collection和Collections的区别就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。