• ThreadLocal总结


    ThreadLocal总结

    特点

    • 抗冲突能力低
    • 每个Thread中只能保存一个对应ThreadLocal的一个值
    • Thread中保存变量ThreadLocalMap<ThreadLocal,V>;

    要点

    实体继承了·WeakReference·能在不被GCRoot标记时,直接被GC回收

    使用类似hash的结构,解决Hash冲突的方法是二次线性探测

    一般情况下的hash数组的长度都是2的幂次方,这样是为了位运算

    强引用(HardReference)、软引用(softReference)、弱引用(WeakReference)、虚引用(PhantomReference)与GCRoot和GC回收有关系

    用途

    用于并发程度不高的情况下实现的Session或者Connection

    ThreadLocalMap
    
    static class ThreadLocalMap {
    
            /**
             * The entries in this hash map extend WeakReference, using
             * its main ref field as the key (which is always a
             * ThreadLocal object).  Note that null keys (i.e. entry.get()
             * == null) mean that the key is no longer referenced, so the
             * entry can be expunged from table.  Such entries are referred to
             * as "stale entries" in the code that follows.
             */
            static class Entry extends WeakReference<ThreadLocal<?>> {
                /** The value associated with this ThreadLocal. */
                Object value;
    
                Entry(ThreadLocal<?> k, Object v) {
                    super(k);
                    value = v;
                }
            }
    
            /**
             * The initial capacity -- MUST be a power of two.
             */
            private static final int INITIAL_CAPACITY = 16;
    
            /**
             * The table, resized as necessary.
             * table.length MUST always be a power of two.
             */
            private Entry[] table;
    
            /**
             * The number of entries in the table.
             */
            private int size = 0;
    
            /**
             * The next size value at which to resize.
             */
            private int threshold; // Default to 0
    
            /**
             * Set the resize threshold to maintain at worst a 2/3 load factor.
             */
            private void setThreshold(int len) {
                threshold = len * 2 / 3;
            }
    
            /**
             * Increment i modulo len.
             */
            private static int nextIndex(int i, int len) {
                return ((i + 1 < len) ? i + 1 : 0);
            }
    
            /**
             * Decrement i modulo len.
             */
            private static int prevIndex(int i, int len) {
                return ((i - 1 >= 0) ? i - 1 : len - 1);
            }
    }
    
    内容来自博客园,拒绝爬虫网站
  • 相关阅读:
    个人总结---小水长流,则能穿石
    软件工程与UML作业3(互评作业)
    软件工程与UML作业2
    软件工程与UML作业1
    大创省级答辩总结
    C语言知识汇编
    C语言知识点汇集
    C语言汇总3
    C语言汇总2
    c语言汇总1
  • 原文地址:https://www.cnblogs.com/Heliner/p/10524842.html
Copyright © 2020-2023  润新知