如何边遍历边移除Collection中的元素

正确方法

Iterator it =list.iterator();
    while(it.hasNext){
        it.move
    }

错误方法

for(Integer i:list){
    list.move(i);
}

你可能感兴趣的:(如何边遍历边移除Collection中的元素)