foreach 遇到的删除、位移问题

list.foreach(x -> {

    不允许对x有remove 操作

});

for(x:xs){

   也不应该删除

}

你可能感兴趣的:(JAVA)