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

      

          好吧,就先到这里吧~

         

      

  • 相关阅读:
    利用npm 安装删除模块
    C#比较类/接口、Dictionary 排序
    关于二叉树的一些基本知识
    关于前端JS的一些常用方法和知识
    组装Json数据的一种简单办法(不用Stringbuilder方法)
    windows环境下Kubernetes及Docker安装(那些坑)
    七夕给自己的礼物-上线排盘小程序
    Asp.net 自定义CustomerSession 存放到Redis中
    CodeTimer 代码性能计数器
    我虽码农,亦不搬砖
  • 原文地址:https://www.cnblogs.com/xiohao/p/4314326.html
Copyright © 2020-2023  润新知