Skip to content

Instantly share code, notes, and snippets.

@treesouth
Created February 25, 2015 03:08
Show Gist options
  • Save treesouth/c46e0a2d0bf344b0ed4b to your computer and use it in GitHub Desktop.
Save treesouth/c46e0a2d0bf344b0ed4b to your computer and use it in GitHub Desktop.
ArrayList删除特定元素
Iterator<Integer> iterator = list.iterator();
while(iterator.hasNext()){
int i = iterator.next();
if(i == 1){
iterator.remove();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment