CopyOnWriteArrayList

CopyOnWriteArrayList是一種線程安全的ArrayList實(shí)現(xiàn)

它使用的是一種寫時(shí)復(fù)制的方法然低,當(dāng)有新元素添加到CopyOnWriteArrayList時(shí)审洞,先從原有的數(shù)組中拷貝一份出來里初,然后在新的數(shù)組做寫操作锅睛,寫完之后疚膊,再將原來的數(shù)組引用指向到新數(shù)組

它定義了一個(gè)內(nèi)部數(shù)組匆光,并且只能通過getArray()、setArray()操作酿联,保證操作的原子性

 /** The array, accessed only via getArray/setArray. */
    private transient volatile Object[] array;

    /**
     * Gets the array.  Non-private so as to also be accessible
     * from CopyOnWriteArraySet class.
     */
    final Object[] getArray() {
        return array;
    }

    /**
     * Sets the array.
     */
    final void setArray(Object[] a) {
        array = a;
    }

定義了一把鎖终息,對所有的寫操作上鎖,保證同一時(shí)刻只有一個(gè)線程進(jìn)行寫操作

 /** The lock protecting all mutators */
 final transient ReentrantLock lock = new ReentrantLock();

示例-添加

    /**
     * Appends the specified element to the end of this list.
     *
     * @param e element to be appended to this list
     * @return {@code true} (as specified by {@link Collection#add})
     */
    public boolean add(E e) {
        final ReentrantLock lock = this.lock;
        lock.lock();
        try {
            Object[] elements = getArray();
            int len = elements.length;
            Object[] newElements = Arrays.copyOf(elements, len + 1);
            newElements[len] = e;
            setArray(newElements);
            return true;
        } finally {
            lock.unlock();
        }
    }

示例-移除

 /**
     * Removes the first occurrence of the specified element from this list,
     * if it is present.  If this list does not contain the element, it is
     * unchanged.  More formally, removes the element with the lowest index
     * {@code i} such that
     * <tt>(o==null ? get(i)==null : o.equals(get(i)))</tt>
     * (if such an element exists).  Returns {@code true} if this list
     * contained the specified element (or equivalently, if this list
     * changed as a result of the call).
     *
     * @param o element to be removed from this list, if present
     * @return {@code true} if this list contained the specified element
     */
    public boolean remove(Object o) {
        Object[] snapshot = getArray();
        int index = indexOf(o, snapshot, 0, snapshot.length);
        return (index < 0) ? false : remove(o, snapshot, index);
    }

    /**
     * A version of remove(Object) using the strong hint that given
     * recent snapshot contains o at the given index.
     */
    private boolean remove(Object o, Object[] snapshot, int index) {
        final ReentrantLock lock = this.lock;
        lock.lock();
        try {
            Object[] current = getArray();
            int len = current.length;
            if (snapshot != current) findIndex: {   //java8,增加了復(fù)雜性贞让。
                int prefix = Math.min(index, len);
                for (int i = 0; i < prefix; i++) {
                    if (current[i] != snapshot[i] && eq(o, current[i])) {
                        index = i;
                        break findIndex;
                    }
                }
                if (index >= len)
                    return false;
                if (current[index] == o)
                    break findIndex;
                index = indexOf(o, current, index, len);
                if (index < 0)
                    return false;
            }
            Object[] newElements = new Object[len - 1];
            System.arraycopy(current, 0, newElements, 0, index);
            System.arraycopy(current, index + 1,
                             newElements, index,
                             len - index - 1);
            setArray(newElements);
            return true;
        } finally {
            lock.unlock();
        }
    }

所有的讀操作都是不需要加鎖的

示例-獲取

     /**
     * {@inheritDoc}
     *
     * @throws IndexOutOfBoundsException {@inheritDoc}
     */
    public E get(int index) {
        return get(getArray(), index);
    }

    @SuppressWarnings("unchecked")
    private E get(Object[] a, int index) {
        return (E) a[index];
    }

優(yōu)缺點(diǎn)

高性能的讀取周崭,適合讀遠(yuǎn)大于寫的場景

寫操作需要拷貝數(shù)組,容易導(dǎo)致gc喳张、只能保證最終一致性续镇,不能夠保證實(shí)時(shí)讀取

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市销部,隨后出現(xiàn)的幾起案子摸航,更是在濱河造成了極大的恐慌,老刑警劉巖舅桩,帶你破解...
    沈念sama閱讀 212,185評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件酱虎,死亡現(xiàn)場離奇詭異,居然都是意外死亡擂涛,警方通過查閱死者的電腦和手機(jī)读串,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,445評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來撒妈,“玉大人恢暖,你說我怎么就攤上這事≌遥” “怎么了杰捂?”我有些...
    開封第一講書人閱讀 157,684評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長棋蚌。 經(jīng)常有香客問我嫁佳,道長挨队,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,564評論 1 284
  • 正文 為了忘掉前任脱拼,我火速辦了婚禮瞒瘸,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘熄浓。我一直安慰自己情臭,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,681評論 6 386
  • 文/花漫 我一把揭開白布赌蔑。 她就那樣靜靜地躺著俯在,像睡著了一般。 火紅的嫁衣襯著肌膚如雪娃惯。 梳的紋絲不亂的頭發(fā)上跷乐,一...
    開封第一講書人閱讀 49,874評論 1 290
  • 那天,我揣著相機(jī)與錄音趾浅,去河邊找鬼愕提。 笑死,一個(gè)胖子當(dāng)著我的面吹牛皿哨,可吹牛的內(nèi)容都是我干的浅侨。 我是一名探鬼主播,決...
    沈念sama閱讀 39,025評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼证膨,長吁一口氣:“原來是場噩夢啊……” “哼如输!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起央勒,我...
    開封第一講書人閱讀 37,761評論 0 268
  • 序言:老撾萬榮一對情侶失蹤不见,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后崔步,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體稳吮,經(jīng)...
    沈念sama閱讀 44,217評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,545評論 2 327
  • 正文 我和宋清朗相戀三年刷晋,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了盖高。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,694評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡眼虱,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出席纽,到底是詐尸還是另有隱情捏悬,我是刑警寧澤,帶...
    沈念sama閱讀 34,351評論 4 332
  • 正文 年R本政府宣布润梯,位于F島的核電站过牙,受9級特大地震影響甥厦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜寇钉,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,988評論 3 315
  • 文/蒙蒙 一刀疙、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧扫倡,春花似錦谦秧、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,778評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至缘挑,卻和暖如春集歇,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背语淘。 一陣腳步聲響...
    開封第一講書人閱讀 32,007評論 1 266
  • 我被黑心中介騙來泰國打工诲宇, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人惶翻。 一個(gè)月前我還...
    沈念sama閱讀 46,427評論 2 360
  • 正文 我出身青樓姑蓝,卻偏偏與公主長得像,于是被迫代替她去往敵國和親维贺。 傳聞我的和親對象是個(gè)殘疾皇子它掂,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,580評論 2 349

推薦閱讀更多精彩內(nèi)容