zoukankan      html  css  js  c++  java
  • Collection接口和Collections类的简单区别和讲解

      这里仅仅进行一些简单的比较,如果你想要更加详细的信息话,请自己百度。

      1.Collection:

      是集合类的上层接口。本身是一个Interface,里面包含了一些集合的基本操作。

      Collection接口时Set接口和List接口的父接口

      里面的常用操作有如下内容:

     

       2.Collections 

          Collections是一个集合框架的帮助类,里面包含一些对集合的排序,搜索以及序列化的操作。

          最根本的是Collections是一个类哦。

          下面是Collections类中的常用操作:

          

         

          为了更好的理解collections类的作用,下面贴一段对Map中的元素进行自定义排序的代码:

         

    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());
     }
     
    }
    }
    

      

          好吧,就先到这里吧~

         

      

  • 相关阅读:
    结对编程2
    结对编程总结:简单的四则运算生成程序
    我的结对项目心得与代码规范
    一个团队和他们的调查表-----("调查表与调查结果分析"心得体会)
    目标?我定好了!(我的软件工程课目标)
    Jmeter响应数据为乱码的处理
    软件工程课程建议
    结对编程之Fault、Error、Failure
    我的结对项目编程感想
    调查问卷后的心得
  • 原文地址:https://www.cnblogs.com/xiohao/p/4314326.html
Copyright © 2011-2022 走看看