WeakhashMap与HashMap之间的区别和联系

类的继承关系

HashMap中的对象可以被拷贝 克隆 序列到磁盘上,WeakhashMap都不行

重要方法

  1. WeakhashMap的put方法(key重复,新值覆盖旧值;头插新节点)
  2. hash算法不一样(WeakhashMap源码297行 )
    /**
     * Retrieve object hash code and applies a supplemental hash function to the
     * result hash, which defends against poor quality hash functions.  This is
     * critical because HashMap uses power-of-two length hash tables, that
     * otherwise encounter collisions for hashCodes that do not differ
     * in lower bits.
     */
    final int hash(Object k) {
        int h = k.hashCode();

        // This function ensures that hashCodes that differ only by
        // constant multiples at each bit position have a bounded
        // number of collisions (approximately 8 at default load factor).
        h ^= (h >>> 20) ^ (h >>> 12);
        return h ^ (h >>> 7) ^ (h >>> 4);
    }

//HashMap337行
   static final int hash(Object key) {
        int h;
        return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
    }

  1. put(447行)不能放键为NULL,系统会自动new一个 NULLKEY,HashMap的key和value都可以为null;
  2. WeakhashMap中的
    put/get/remove/resize等方法均会使用expungeStaleEntries()方法,用来遍历ReferenceQueue找到里面的key所对应的结点清除掉

使用场景

WeakHashMap的键是弱引用关联对象;HashMap是强引用关联

相关资料

Java四大引用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值