HashMap 取值应注意key的类型_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > HashMap 取值应注意key的类型

HashMap 取值应注意key的类型

 2015/5/2 19:07:48  john201314  程序员俱乐部  我要评论(0)
  • 摘要:Map<Long,String>hashMap=newHashMap<Long,String>();hashMap.put(newLong(1),"A");System.out.println(hashMap.get(newInteger(1)));发现取的值为null.这是因为取值的时候没有与key的类型匹配。这是取值的逻辑代码finalEntry<K,V>getEntry(Objectkey){inthash=(key==null)?0:hash(key
  • 标签:KEY has Map Hash
class="java" name="code"> Map<Long,String> hashMap = new HashMap<Long,String>();
        hashMap.put(new Long(1), "A");
        System.out.println(hashMap.get(new Integer(1)));

发现取的值为null.

这是因为取值的时候没有与key的类型匹配。

这是取值的逻辑代码
   final Entry<K,V> getEntry(Object key) {
        int hash = (key == null) ? 0 : hash(key);
        for (Entry<K,V> e = table[indexFor(hash, table.length)];
             e != null;
             e = e.next) {
            Object k;
            if (e.hash == hash &&
                ((k = e.key) == key || (key != null && key.equals(k))))
                return e;
        }
        return null;
    }


但是Integer的equals方法
  public boolean equals(Object obj) {
        if (obj instanceof Integer) {
            return value == ((Integer)obj).intValue();
        }
        return false;
    }


Long的equals方法
  public boolean equals(Object obj) {
        if (obj instanceof Long) {
            return value == ((Long)obj).longValue();
        }
        return false;
    }


即使值相等,但因为类型不匹配,并且HashMap接受的参数类型是Object,它这样设计的用途是为了所有的类型都通用。但是HashMap本身就没声明说,一定要类型对才能取值。
哈哈以后要注意了。
发表评论
用户名: 匿名