并发异常类
java.util.ConcurrentModificationException
解决方案1
- new Vector<>()
- Collections.sychronizedList(new ArrayList<>())
1 | /** |
解决方案2
限制不能使用Vector和Collections工具类。
- new CopyOnWriteList()
- ReentrantLock
好好学习,天天向上
java.util.ConcurrentModificationException
1 | /** |
限制不能使用Vector和Collections工具类。