Collection接口和Collections类的简单区别和讲解
这里仅仅进行一些简单的比较,如果你想要更加详细的信息话,请自己百度。
1.Collection:
是集合类的上层接口。本身是一个Interface,里面包含了一些集合的基本操作。
Collection接口时Set接口和List接口的父接口
里面的常用操作有如下内容:
2.Collections
Collections是一个集合框架的帮助类,里面包含一些对集合的排序,搜索以及序列化的操作。
最根本的是Collections是一个类哦。
下面是Collections类中的常用操作:
为了更好的理解collections类的作用,下面贴一段对Map中的元素进行自定义排序的代码:
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package com.yonyou.test; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; /** * 测试类 * @author 小浩 * @创建日期 2015-4-18 */ public class Test{ public static void main(String[] args) throws IOException{ new Test().test(); } /** * 对Map元素进行排序操作 */ private void test() { Map<String,Integer> map= new HashMap<String,Integer>(); map.put( "张三" , 7 ); map.put( "李四" , 1 ); map.put( "王五" , 9 ); map.put( "赵六" , 8 ); ArrayList<Entry<String,Integer>> list= new ArrayList<Entry<String,Integer>>(map.entrySet()); Collections.sort(list, new Comparator<Entry<String,Integer>>() { @Override public int compare(Entry<String, Integer> o1, Entry<String, Integer> o2) { return o1.getValue()-o2.getValue(); } }); //map按照指定格式排序后的结果 for (Entry<String,Integer> entry:list) { System.out.println(entry.getKey()+ "=》" +entry.getValue()); } } } |
好吧,就先到这里吧~