码迷,mamicode.com
首页 > 其他好文 > 详细

HashMap集合特点

时间:2015-02-13 09:15:18      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

 

》HashMap集合特点

HashMap:是基于哈希表的Map接口实现。

哈希表的作用是用来保证键的唯一性的。

技术分享

         不明白,直接看HashMap的put方法源码

//HashMap的put方法源码
public V put(K key, V value) {
        if (key == null)
            return putForNullKey(value);
        int hash = hash(key.hashCode());
        int i = indexFor(hash, table.length);
        for (Entry<K,V> e = table[i]; e != null; e = e.next) {
            Object k;
            if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
                V oldValue = e.value;
                e.value = value;
                e.recordAccess(this);
                return oldValue;
            }
        }

        modCount++;
        addEntry(hash, key, value, i);
        return null;
    }

HashMap集合特点

标签:

原文地址:http://www.cnblogs.com/qq-757617012/p/4289626.html

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