摘要: public class WeakHashMapIteratorTest { @SuppressWarnings({ "rawtypes", "unchecked" }) public static void main(String[] args) { Map map = new WeakHashMap1(7); for (int i = 0; i... 阅读全文
posted @ 2019-06-13 11:43 无天666 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 弱引用(WeakReference)的特性是:当gc线程发现某个对象只有弱引用指向它,那么就会将其销毁并回收内存。WeakReference也会被加入到引用队列queue中。 它的特殊之处在于 WeakHashMap 里的entry可能会被GC自动删除,即使程序员没有调用remove()或者clea 阅读全文
posted @ 2019-06-13 11:22 无天666 阅读(327) 评论(0) 推荐(0) 编辑