`
liuzhaomin
  • 浏览: 207322 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

HashMap put

 
阅读更多

 

/**
     * Offloaded version of put for null keys
     */
    private V putForNullKey(V value) {
        for (Entry<K,V> e = table[0]; e != null; e = e.next) {
            if (e.key == null) {
                V oldValue = e.value;
                e.value = value;
                e.recordAccess(this);
                return oldValue;
            }
        }
        modCount++;
        addEntry(0, null, value, 0);
        return null;
    }
 
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;
    }
 
/**
     * Adds a new entry with the specified key, value and hash code to
     * the specified bucket.  It is the responsibility of this
     * method to resize the table if appropriate.
     *
     * Subclass overrides this to alter the behavior of put method.
     */
    void addEntry(int hash, K key, V value, int bucketIndex) {
	Entry<K,V> e = table[bucketIndex];
        table[bucketIndex] = new Entry<K,V>(hash, key, value, e);
        if (size++ >= threshold)
            resize(2 * table.length);
    }
 
public V get(Object key) {
        if (key == null)
            return getForNullKey();
        int hash = hash(key.hashCode());
        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.equals(k)))
                return e.value;
        }
        return null;
    }

 

/**
     * Returns <tt>true</tt> if this map contains a mapping for the
     * specified key.
     *
     * @param   key   The key whose presence in this map is to be tested
     * @return <tt>true</tt> if this map contains a mapping for the specified
     * key.
     */
    public boolean containsKey(Object key) {
        return getEntry(key) != null;
    }

    /**
     * Returns the entry associated with the specified key in the
     * HashMap.  Returns null if the HashMap contains no mapping
     * for the key.
     */
    final Entry<K,V> getEntry(Object key) {
        int hash = (key == null) ? 0 : hash(key.hashCode());
        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;
    }
 

 

分享到:
评论

相关推荐

    HashMap部分源码分析

    `put`方法用于向HashMap中添加元素。其核心逻辑包括: 1. **检查数组是否已初始化**:如果数组尚未初始化,则调用`resize`方法进行初始化。 2. **计算索引**:使用键的哈希码和数组长度进行按位与运算,得到索引。 ...

    HashMap put方法的源码分析

    《HashMap的put方法源码深度解析》 HashMap作为Java中常用的数据结构,其高效的数据存储和查找机制在很多场景下都被广泛应用。从Java 1.7到1.8,HashMap经历了重大改进,尤其是在解决死循环问题上。本文将深入解析...

    HashMap之put方法源码解读.docx

    HashMap 之 put 方法源码解读 HashMap 是 Java 中一种常用的数据结构,用于存储键值对。其中,put 方法是 HashMap 中最重要的方法之一,负责将键值对存储到HashMap 中。在本文中,我们将对 HashMap 的 put 方法的...

    HashMap在put数据时是如何找到要存放的位置的?.docx

    HashMap 在 put 数据时是如何找到要存放的位置的? 在使用 HashMap 时,我们常常会问自己,HashMap 是如何找到要存放的位置的?答案就在于hashCode的计算方法和数组长度的影响。下面我们将详细解释这个问题。 首先...

    HashMap 概述 精讲 .md

    - **put过程**:详细描述HashMap的put过程。 - **线程安全性**:解释为什么HashMap不是线程安全的? - **哈希碰撞处理**:HashMap是如何处理哈希碰撞的? - **get元素**:HashMap是如何get元素的? - **HashMap和...

    HashMap的put逻辑(1.7) .svg

    HashMap的put逻辑(1.7) .svg

    Java数组+链表简单实现HashMap的put和get 数组和链表.pdf

    这里我们将分析一个简单的自定义HashMap实现,它使用Java数组和链表来完成put和get操作。 首先,我们看到类`MyHashMap`包含一个名为`Entry`的内部类,`Entry`类代表数组中的每个元素,它包含了键(K)和值(V),...

    马士兵老师HashMap学习笔记

    本文将结合马士兵老师的讲解,详细阐述HashMap在不同JDK版本中的put操作流程,以及可能遇到的死循环问题。 首先,我们来看JDK 8中HashMap的put操作。在JDK 8中,HashMap进行了重大的优化,引入了红黑树(Red-Black ...

    05-HashMap的put操作源码分析(下).mp4

    05-HashMap的put操作源码分析(下).mp4

    04-HashMap的put操作源码分析(上).mp4

    04-HashMap的put操作源码分析(上).mp4

    Java HashMap类详解

    HashMap 的使用可以通过创建一个 HashMap 对象,然后使用 put 方法将 key-value 对添加到该对象中。例如: Java 代码 HashMap, Double&gt; map = new HashMap, Double&gt;(); map.put("语文", 80.0); map.put("数学", ...

    hashMap和hashTable的区别

    hashMap.put("One", 1); hashMap.put("Two", 2); hashMap.put(null, 3); // HashMap 允许 null 键 System.out.println(hashMap.get(null)); // 输出 3 // 使用 HashTable Hashtable, Integer&gt; hashTable = ...

    你真的懂大厂面试题:HashMap吗?

    本文将深入解析HashMap的内部实现,包括其数据结构、put方法和get方法的工作原理。 HashMap在JDK 1.8版本中采用了混合数据结构,即数组+链表或数组+红黑树。这种设计旨在提高查找、插入和删除操作的效率。数组是...

    Hashmap详解

    下面我们将深入探讨 HashMap 的数据结构、 put 方法的实现细节和 Hash 码的计算过程。 HashMap 的数据结构 HashMap 的数据结构可以分为两部分:数组和链表。数组是 HashMap 的基本结构,链表是数组元素的具体实现...

    面试题 Java 基础总结了经常会被面试官问的问题

    - **HashMap put流程**:插入新键值对,考虑扩容、冲突解决等。 10. **其他知识点**: - **Integer缓存池**:-128到127的Integer对象会被缓存,提高效率。 - **设计模式**:如单例模式、工厂模式、观察者模式等...

    HashMap死循环原因分析.docx

    假设线程A和线程B同时对HashMap进行put操作,并且这时候HashMap的size已经超过了threshold。线程A开始执行resize操作,并将旧的table中的元素重新hash到新的table中。同时,线程B也开始执行resize操作,并将旧的...

    hashmap 实例

    hashmap.put("" + i, "hello"); } ``` 这段代码创建了一个 HashMap 对象并填充了1000个键值对,键为字符串形式的数字,值为"hello"。接着,通过 `iterator` 遍历 HashMap 的键集并获取对应的值: ```java ...

    HashMap总结

    1. 添加键值对:使用 put(K key, V value) 方法将键值对添加到 HashMap 中。 2. 取得值:使用 get(Object key) 方法根据键取得对应的值。 3. 检查键是否存在:使用 containsKey(Object key) 方法检查 HashMap 中是否...

    Javascript实现和操作HashMap

    在JavaScript中,HashMap是一种数据结构,它存储键值对,并且通过键来快速查找值。虽然JavaScript原生的`Map`对象提供了类似的功能,但在某些场景下,开发者可能需要自定义HashMap来满足特定的需求,例如优化性能...

    HASHMAP排序功能描述

    sortedMap.put(entry.getKey(), entry.getValue()); } ``` **4. 排序注意事项** - 当使用Collections.sort()进行排序时,HashMap的键必须实现Comparable接口,或者在Comparator中指定排序规则。 - 如果HashMap的键...

Global site tag (gtag.js) - Google Analytics