Java容器的fail-fast fail-safe策略详细解读
创始人
2025-05-28 02:35:51
0

Java容器的fail-fast fail-safe策略详细解读

  • fail-fast
    • ArrayList
    • HashMap
    • 总结
  • fail-safe
    • CopyOnWriteArrayList
    • ConcurrentHashMap
    • 总结

fail-fast

在fail-fast中所有的集合容器都是强一致性的,因为他们在各种遍历之前,都会提取保存modCount的值,为后面每一次迭代或者遍历前进行比较,不一致则抛出并发修改异常。Collection以ArrayList为代表,Map以HashMap为代表进行验证

ArrayList

可以发现不管是forEach遍历还是iterator获取迭代器进行迭代也好,都会提前保存modCount的值,并且每次调用iterator()都会生成新的迭代器(每次都会记录当前ArrayList的modCout最新值);并且每次循环或者迭代都会判断modCount != expectedModCount,如果不一致则抛出并发修改异常ConcurrentModificationException

public class ArrayList extends AbstractListimplements List, RandomAccess, Cloneable, java.io.Serializable
{@Overridepublic void forEach(Consumer action) {Objects.requireNonNull(action);final int expectedModCount = modCount;  // 记录值@SuppressWarnings("unchecked")final E[] elementData = (E[]) this.elementData;final int size = this.size;for (int i=0; modCount == expectedModCount && i < size; i++) {action.accept(elementData[i]);}if (modCount != expectedModCount) {throw new ConcurrentModificationException();}}public Iterator iterator() {return new Itr();}private class Itr implements Iterator {int cursor;       // index of next element to returnint lastRet = -1; // index of last element returned; -1 if no suchint expectedModCount = modCount;  // 记录值Itr() {}public boolean hasNext() {return cursor != size;}@SuppressWarnings("unchecked")public E next() {checkForComodification();int i = cursor;if (i >= size)throw new NoSuchElementException();Object[] elementData = ArrayList.this.elementData;if (i >= elementData.length)throw new ConcurrentModificationException();cursor = i + 1;return (E) elementData[lastRet = i];}public void remove() {if (lastRet < 0)throw new IllegalStateException();checkForComodification();try {ArrayList.this.remove(lastRet);cursor = lastRet;lastRet = -1;expectedModCount = modCount; // 使用迭代器移除后会更新创建迭代器记录的值} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}final void checkForComodification() {if (modCount != expectedModCount)throw new ConcurrentModificationException();}}
}

HashMap

HashMap迭代遍历主要有entrySet()、keys()、values()

public class HashMap extends AbstractMapimplements Map, Cloneable, Serializable {final class EntryIterator extends HashIteratorimplements Iterator> {public final Map.Entry next() { return nextNode(); }}final class EntrySet extends AbstractSet> {public final int size()                 { return size; }public final void clear()               { HashMap.this.clear(); }// entrySet 迭代器public final Iterator> iterator() {return new EntryIterator();}// entrySet foreachpublic final void forEach(Consumer> action) {Node[] tab;if (action == null)throw new NullPointerException();if (size > 0 && (tab = table) != null) {int mc = modCount; // 记录值for (int i = 0; i < tab.length; ++i) {for (Node e = tab[i]; e != null; e = e.next)action.accept(e);}if (modCount != mc)  // 检测并发修改异常throw new ConcurrentModificationException();}}}final class KeySet extends AbstractSet {// 迭代器public final Iterator iterator()     { return new KeyIterator(); }// KeySet foreachpublic final void forEach(Consumer action) {Node[] tab;if (action == null)throw new NullPointerException();if (size > 0 && (tab = table) != null) {int mc = modCount; // 记录值for (int i = 0; i < tab.length; ++i) {for (Node e = tab[i]; e != null; e = e.next)action.accept(e.key);}if (modCount != mc)  // 检测并发修改异常throw new ConcurrentModificationException();}}}final class Values extends AbstractCollection {// 迭代器public final Iterator iterator()     { return new ValueIterator(); }// values foreachpublic final void forEach(Consumer action) {Node[] tab;if (action == null)throw new NullPointerException();if (size > 0 && (tab = table) != null) {int mc = modCount; // 记录值for (int i = 0; i < tab.length; ++i) {for (Node e = tab[i]; e != null; e = e.next)action.accept(e.value);}if (modCount != mc) // 检测并发修改异常throw new ConcurrentModificationException();}}}// 迭代器abstract class HashIterator {Node next;        // next entry to returnNode current;     // current entryint expectedModCount;  // for fast-failint index;             // current slotHashIterator() {expectedModCount = modCount; // 记录值Node[] t = table;current = next = null;index = 0;if (t != null && size > 0) { // advance to first entrydo {} while (index < t.length && (next = t[index++]) == null);}}public final boolean hasNext() {return next != null;}final Node nextNode() {Node[] t;Node e = next;if (modCount != expectedModCount) // entryset、values、keys 使用的迭代器都有并发修改异常检测throw new ConcurrentModificationException();if (e == null)throw new NoSuchElementException();if ((next = (current = e).next) == null && (t = table) != null) {do {} while (index < t.length && (next = t[index++]) == null);}return e;}public final void remove() {Node p = current;if (p == null)throw new IllegalStateException();if (modCount != expectedModCount)throw new ConcurrentModificationException();current = null;K key = p.key;removeNode(hash(key), key, null, false, false);expectedModCount = modCount; // 迭代器移除节点时会更新构造方法中的记录值}}final class KeyIterator extends HashIteratorimplements Iterator {public final K next() { return nextNode().key; }}final class ValueIterator extends HashIteratorimplements Iterator {public final V next() { return nextNode().value; }}final class EntryIterator extends HashIteratorimplements Iterator> {public final Map.Entry next() { return nextNode(); }}}

总结

  1. fail-fast的容器是不允许在遍历或者迭代的时候修改值 ,每次指针下移的时候都会判断modCount != expectedModCount,如果不一致则抛出并发修改异常ConcurrentModificationException
  2. 迭代器一旦创建就会记录当前modCount的值,所以可能出现多个迭代器遍历出的结果不一样的情况
  3. 可以使用迭代器的remove方法删除元素,删除后会更新当前迭代器的modCount(很明显只允许当前迭代器删除数据,避免并发线程删除数据视图),ArrayList通过iterator()获取的迭代器只支持删除元素,通过listIterator()获取的迭代器还支持添加和修改元素
  4. map的keys、values、entrySet()都有foreach跟迭代器,都满足以上几点
  5. 并发修改异常ConcurrentModificationException只能用于检测并发修改时出现的bug,开发中不能够依赖这个异常是否抛出而进行并发操作的编程,如果有一个线程删除数据,有恰好有另一个线程添加了数据,那么modCout的值还是不变,并不能被某个线程迭代器所检测出来。
  6. fail-fast很明显在数据一致性跟可用性之间选择了数据一致性,当检测数据视图不一致的情况立马通过抛出异常中断当前迭代器指针迭代、for循环的遍历操作,保证数据的强一致性

fail-safe

在java.util.concurrent包下的容器全部都是fail-safe,它们允许在并发下修改数据,在很多网络资料中都说juc包下的容器不去检测并发修改异常,从而实现迭代时可以修改值的情况,这种说法是不够严谨的。通过CopyOnWriteArrayList、ConcurrentHashMap源码进行解析

CopyOnWriteArrayList

  1. CopyOnWriteArrayList的迭代器和for遍历并没有检测并发修改异常的操作,但是迭代器的set()、add()、remove()会抛出UnsupportedOperationException的异常,遍历只支持读操作,是读写分离思想的体现
  2. 可以使用copyOnWriteArrayList自身的增删改操作,增删改操作使用了类似String不可变类的思想,每次更新操作都会复制一份出来并替换原来的Object数组,不会影响到创建迭代器时拿到的Object数组的迭代遍历,写操作也不会阻塞读操作
  3. CopyOnWriteArrayList是弱一致性的,允许迭代时修改数据,在数据的一致性和可用性中选择了可用性。
public class CopyOnWriteArrayListimplements List, RandomAccess, Cloneable, java.io.Serializable {// foreach中并没有出现任何检测并发修改的操作public void forEach(Consumer action) {if (action == null) throw new NullPointerException();Object[] elements = getArray();int len = elements.length;for (int i = 0; i < len; ++i) {@SuppressWarnings("unchecked") E e = (E) elements[i];action.accept(e);}}public Iterator iterator() {return new COWIterator(getArray(), 0);}static final class COWIterator implements ListIterator {/** Snapshot of the array */private final Object[] snapshot;/** Index of element to be returned by subsequent call to next.  */private int cursor;private COWIterator(Object[] elements, int initialCursor) {cursor = initialCursor;snapshot = elements;}public boolean hasNext() {return cursor < snapshot.length;}public boolean hasPrevious() {return cursor > 0;}// 迭代器中也没有检测并发修改操作@SuppressWarnings("unchecked")public E next() {if (! hasNext())throw new NoSuchElementException();return (E) snapshot[cursor++];}@SuppressWarnings("unchecked")public E previous() {if (! hasPrevious())throw new NoSuchElementException();return (E) snapshot[--cursor];}public int nextIndex() {return cursor;}public int previousIndex() {return cursor-1;}/*** Not supported. Always throws UnsupportedOperationException.* @throws UnsupportedOperationException always; {@code remove}*         is not supported by this iterator.*/public void remove() {throw new UnsupportedOperationException();}/*** Not supported. Always throws UnsupportedOperationException.* @throws UnsupportedOperationException always; {@code set}*         is not supported by this iterator.*/public void set(E e) {throw new UnsupportedOperationException();}/*** Not supported. Always throws UnsupportedOperationException.* @throws UnsupportedOperationException always; {@code add}*         is not supported by this iterator.*/public void add(E e) {throw new UnsupportedOperationException();}}
}

ConcurrentHashMap

  1. ConcurrentHashMap的keys()、values()、entrySet()同样也没有检测并发修改的操作
  2. keySet()、entrySet()支持添加删除操作,values()支持删除不支持添加操作
  3. ConcurrentHashMap中节点的val和next都是volatile修饰的,如果变化发生在已遍历过的部分,迭代器就不会反映出来,而如果变化发生在未遍历过的部分,迭代器就会发现并反映出来,这就是弱一致性
static final class KeyIterator extends BaseIteratorimplements Iterator, Enumeration {KeyIterator(Node[] tab, int index, int size, int limit,ConcurrentHashMap map) {super(tab, index, size, limit, map);}public final K next() {Node p;if ((p = next) == null)throw new NoSuchElementException();K k = p.key;lastReturned = p;advance();return k;}public final K nextElement() { return next(); }
}static final class ValueIterator extends BaseIteratorimplements Iterator, Enumeration {ValueIterator(Node[] tab, int index, int size, int limit,ConcurrentHashMap map) {super(tab, index, size, limit, map);}public final V next() {Node p;if ((p = next) == null)throw new NoSuchElementException();V v = p.val;lastReturned = p;advance();return v;}public final V nextElement() { return next(); }
}static final class EntryIterator extends BaseIteratorimplements Iterator> {EntryIterator(Node[] tab, int index, int size, int limit,ConcurrentHashMap map) {super(tab, index, size, limit, map);}public final Map.Entry next() {Node p;if ((p = next) == null)throw new NoSuchElementException();K k = p.key;V v = p.val;lastReturned = p;advance();return new MapEntry(k, v, map);}
}

总结

  • JUC包下的容器都是fail-safe,并且都是在数据的一致性跟可用性中选择了可用性,允许出现数据的短期不一致,但是保证最终数据的一致性
  • 并发容器遍历的策略,有的在并发修改时的数据不能再迭代器中遍历出来,如CopyOnWriteArrayList通过读写分离,在遍历的时候保证读视图不受并发修改的影响,有的通过volatile保证数据多线程的可见性如ConcurrentHashMap。

以上便是Java容器的fail-fast fail-safe策略详细解读,仅为个人见解,如有不当欢迎在评论区交流!

相关内容

热门资讯

手机系统flyme是安卓系统吗... 你有没有想过,你的手机里那个飞快如风的系统,Flyme,它是不是安卓的“好兄弟”呢?今天,就让我带你...
安卓os系统怎么使用,Andr... 你手里那台安卓手机是不是总感觉有点儿复杂,不知道怎么玩转呢?别急,今天就来给你详细介绍一下安卓OS系...
安卓怎么装旧系统,安卓设备如何... 你有没有想过,手机用久了,系统更新换代,新功能层出不穷,但有时候,那些旧系统里的经典操作和熟悉感,简...
电脑怎装安卓系统,轻松实现多系... 你有没有想过,你的电脑除了装Windows系统,还能装上安卓系统呢?没错,就是那个让你手机不离手的安...
安卓系统找不到软件,探寻解决方... 最近是不是你也遇到了这样的烦恼:手机里明明有安卓系统,却怎么也找不到心仪的软件?别急,今天就来给你详...
小米独立系统取代安卓,迈向自主... 小米独立系统:小米与安卓的较量在科技领域,每一次系统的更新换代都牵动着无数科技爱好者和行业从业者的目...
安卓系统会员价格,性价比与权益... 你有没有发现,最近手机上的安卓系统会员价格又涨了?这可真是让人有点头疼呢!咱们一起来聊聊这个话题,看...
安卓点歌系统怎么点歌,享受音乐... 你有没有想过,在安卓手机上点歌竟然也能这么有趣呢?没错,现在就让我带你一起探索安卓点歌系统的奥秘吧!...
w222安卓系统,功能解析与使... 你有没有发现,最近你的手机是不是变得越来越流畅了?没错,我要说的就是那款备受瞩目的W222安卓系统!...
iphone手机使用安卓系统,... 你有没有想过,如果有一天你的iPhone手机突然变成了安卓系统,会是怎样的场景呢?想象那熟悉的苹果界...
安卓系统珠宝手绘软件,艺术与科... 你有没有想过,手机上那些精美的珠宝手绘作品是怎么诞生的呢?其实,这一切都离不开安卓系统上一款神奇的应...
安卓系统app签名方案,安全与... 你有没有想过,为什么你的手机上那么多应用都能无缝运行?这其中,安卓系统app签名方案可是功不可没哦!...
安卓系统关闭应用存储,释放手机... 手机里的应用越来越多,存储空间越来越紧张,是不是感觉手机像是个装满杂物的仓库?别急,今天就来教你怎么...
安卓系统的占比,引领移动设备市... 你知道吗?在智能手机的世界里,有一个系统可是占据了半壁江山,那就是安卓系统!想象你手中的手机,是不是...
在线安卓翻译系统实现,便捷跨语... 你有没有想过,在这个信息爆炸的时代,语言不再是沟通的障碍?没错,我要说的是,在线安卓翻译系统正在悄悄...
安卓系统适配键盘丝印,打造个性... 你有没有发现,用安卓手机打字的时候,有时候键盘上的字母会变得模糊不清,甚至有时候还会出现错别字呢?这...
车载安装安卓系统教程,轻松实现... 你有没有想过给你的爱车来个“大变身”?没错,就是给车载系统来个升级,让它从那个老旧的界面跳脱出来,变...
原生安卓系统6.0精简,极致体... 亲爱的手机控们,你是否曾为手机系统臃肿、运行缓慢而烦恼?今天,就让我带你一探究竟,揭秘原生安卓系统6...
安卓系统与嵌入式系统,安卓系统... 你知道吗?在科技的世界里,有一种系统,它就像是个万能的魔法师,既能掌控手机、平板,又能深入到各种智能...
风驰软件安卓系统行吗,引领智能... 你有没有想过,手机上的软件是不是也能像风一样自由驰骋呢?今天,咱们就来聊聊这个话题——风驰软件在安卓...