zoukankan      html  css  js  c++  java
  • java HashMap插入重复Key值问题

    今天在用到了HashMap来遍历所有非重复的Key时遇到了一个问题,在写入数据库的时候报错--主键不能重复插入。查看了好久java文档才得以解决。

    自定义一个类型

    class MyType {
        private String arga;
        private String argb;
     
        public MyType(String arga, String argb) {
            this.arga = arga;
            this.argb = argb;
        }
    }
    如果代码中用到类似
    HashMap<MyType, String> hm = new HashMap<MyType, String>();
    那么定义两个变量 
    MyType mta = new MyType("aaa", "bbb");
    MyType mtb = new MyTypr("aaa", "bbb");
    hm.put(mta, "xxx");
    hm.put(mtb, "xxx");

    猜下HashMap中有几个元素?
     
    答案是有两个,原因是mta和mtb放在了不同的内存地址里面,mta和mtb传进去的是引用,那么怎么样实现HashMap没有值相同的Key呢?
    方法很简单:只需要重写两个函数 public boolean equals(Object obj); 和 public int hashCode()
    如下:
    class MyType {
        private String arga;
        private String argb;
        public MyType(String arga, String argb) {
            this.arga = arga;
            this.argb = argb;
        }
     
        public int hashCode(){                 
         return this.arga.hashCode() * this.argb.hashCode() ; 
        } 
       
        public boolean equals(Object obj) {   
           if (this == obj) {               
                  return true;                  
           }         
           if (!(obj instanceof MyType)) {  
                 return false;               
           }    
           
           MyType p = (MyType) obj;  
          
           if (this.arga.equals(p.arga) && this.argb.equals(p.argb)) {              
               return true ;                  
           } else {           
               return false ;                
           }       
        }
    }
    然后在进行

    MyType mta = new MyType("aaa", "bbb");
    MyType mtb = new MyTypr("aaa", "bbb");
    hm.put(mta, "xxx");
    hm.put(mtb, "xxx");

    你会发现,HashMap里只有一个Key了
     
    至于HashCode要怎么实现,我认为可以任意实现,取得不好只是会影响HashMap的效率,另外想要插入重复的Key可以使用IdentityHashMap,详见java document


    原文链接地址:点击这里

     

     


  • 相关阅读:
    【pandas实战】时间差计算
    【pandas实战】数据分类整理
    海量数据处理方法整理记录
    Springboot中实现策略模式+工厂模式
    实现一个秒杀系统
    Redis实现的分布式锁和分布式限流
    实现分布式服务注册及简易的netty聊天
    聊聊数据库乐观锁和悲观锁,乐观锁失败后重试
    聊聊RPC原理二
    聊聊kafka结构
  • 原文地址:https://www.cnblogs.com/JackieZhu/p/4190470.html
Copyright © 2011-2022 走看看