码迷,mamicode.com
首页 > 编程语言 > 详细

java IdentityHashMap 与HashMap

时间:2014-10-19 17:06:57      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:style   ar   使用   java   sp   div   log   ef   bs   

这两个map的主要区别在于比较key值的时候:
IdentityHashMap认为当k1 == k2 时key值是一样的
HaspMap认为k1 == null ? k2 == null:k1.equals(k2)时key值是一样的

举个例子:
Integer a = new Integer(123456);
           Integer b = new Integer(123456);
           HashMap hashMap = new HashMap();
           IdentityHashMap identityHashMap = new IdentityHashMap();
           hashMap.put(a,1);
           hashMap.put(b, 2);
           identityHashMap.put(a,1);
           identityHashMap.put(b,2);
           System.out.println(hashMap);
           System.out.println(identityHashMap);

运行结果:
P_LOG: {123456=2}
P_LOG: {123456=1, 123456=2}

总结:
          HashMap:会使用equals比较key对象
          IdentityHashMap:使用 == 比较key对象
      



java IdentityHashMap 与HashMap

标签:style   ar   使用   java   sp   div   log   ef   bs   

原文地址:http://blog.csdn.net/wangjuntytl/article/details/40263805

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!