List 迭代过程中删除元素 List 迭代过程中删除元素采用list.remove(obj)会造成其size自减,modCount自增而产生问题:
Collection list = new CopyOnWriteArrayList();...