Java中的HashMap原理分析

2019-11-15  本文已影响0人  修符道人

不同版本的JDK的HashMap的底层实现均有所不同

JDK各个版本的源码查看

各个版本的源码查看:https://blog.csdn.net/zuochao_2013/article/details/79624579

android各个版本对应的JDK版本
https://blog.csdn.net/u010825468/article/details/78909550
通过改变build.gradle里的版本,即可查看对应JDK的源码。

后来我发现上面的这个表不准确,android我用SDK API 19,然后按照下面的方法,用010Editor来查看HashMap.class,发现竟然是JDK1.5。
https://blog.csdn.net/mengxiangxingdong/article/details/89437087

image.png

经我测试,真正的情况是API19、20都是JDK1.5,然后到了API21直接就JDK1.7了,没有用到JDK1.6。

大坑:
看了很多的博客,但是用android.jar里的源码一对比,怎么也对不上。
http://www.apkbus.com/thread-567645-1-1.html
原来android源码里的JDK和Java的JDK不是一个东西。

HashMap的特性

各个版本的HashMap的区别

https://www.nowcoder.com/discuss/151172

https://www.2cto.com/kf/201707/654203.html

https://blog.csdn.net/qq_36520235/article/details/82417949

JDK1.8的HashMap实现

https://www.cnblogs.com/little-fly/p/7344285.html

https://blog.csdn.net/qq_22200097/article/details/82791479

JDK1.7及以下的HashMap实现

https://blog.csdn.net/qq_38455201/article/details/80732839

https://blog.csdn.net/C18298182575/article/details/87167323

JDK1.5源码分析

主干数组初始化

  /**
     * Min capacity (other than zero) for a HashMap. Must be a power of two
     * greater than 1 (and less than 1 << 30).
     */
    private static final int MINIMUM_CAPACITY = 4;

    /**
     * An empty table shared by all zero-capacity maps (typically from default
     * constructor). It is never written to, and replaced on first put. Its size
     * is set to half the minimum, so that the first resize will create a
     * minimum-sized table.
     */
    private static final Entry[] EMPTY_TABLE
            = new HashMapEntry[MINIMUM_CAPACITY >>> 1];

     /**
     * Constructs a new empty {@code HashMap} instance.
     */
    @SuppressWarnings("unchecked")
    public HashMap() {
        table = (HashMapEntry<K, V>[]) EMPTY_TABLE;
        threshold = -1; // Forces first put invocation to replace EMPTY_TABLE
    }

可见,HashMap的无参构造方法默认会创建一个大小为2的数组。
...版本太旧,就不往下分析了。

JDK1.6源码分析

https://blog.csdn.net/rocksteadypro/article/details/80082822

JDK1.7源码分析

https://www.cnblogs.com/xiaolovewei/p/7993521.html

https://www.cnblogs.com/xiaozhongfeixiang/archive/2019/09/23/11548563.html

需要注意的点:

上一篇下一篇

猜你喜欢

热点阅读