当我尝试使用迭代器从CopyOnWriteArrayList中删除元素时,我收到异常.
我注意到这是有记载的
我注意到这是有记载的
Element-changing operations on iterators themselves (remove,set,and add) are not supported. These methods throw UnsupportedOperationException.
(从http://download.oracle.com/javase/6/docs/api/java/util/concurrent/CopyOnWriteArrayList.html)
现在,令人惊讶的是,我可以用foreach进行迭代,并使用remove()函数.但是当我尝试使用for循环从列表中删除一个项目时,我会得到一个着名的错误 – 你跳过删除的元素旁边的元素.
那么有什么建议吗