关于遍历ArrayList中的梗
for (int i = 0; i < list.size(); i++){
if ("sample".equals(list.get(i)){
list.remove(i);
}
}
说明:
比如当前的list数据为 1 2 3 4 5 6 7 8 9 0 size = 10
对应的i就应该是 0 1 2 3 4 5 6 7 8 9
满足条件的是数据 = 6; 即 i = 5 数据为 1 2 3 4 5 7 8 9 0 size = 9
向后执行 i = 6 时 i: 0 1 2 3 4 5 6 7 8
当i = 6 时对应的数据是8 也就是说不会遍历到7这个数据
1、
Iterator<Integer> iterator = list.iterator();
while (iterator.hasNext){
if ("sample".equals(iterator.next){
iterator.remove();
}
}
2、方向移除
for(int i = list.size() - 1;i >= 0;i--){
String b = list.get(i);
if(b.equals("502323232")){
list.remove(i);
}
}
3、
for (int i = 0; i < list.size(); i++){
if ("sample".equals(list.get(i)){
list.remove(i);
}
i--;
}
——————————————————————————————————————————————————————————————————————————————
for (int i ……)//获取Map对象实例
Iterator i = map.entrySet().iterator();
while (i.hasNext()) {
Object obj = i.next();
String key = obj.toString();
if (CommandControl.getInstance().commandList.indexOf(map) == -1 ? false : true){
if (CommandControl.getInstance().commandList.size() == j){
return;
}
CommandControl.getInstance().commandList.remove(j);
}
有时候使用Map的Iterator移除数据也会出现越界,就先加上判断
——————————————————————————————————————————————————————————————————————————————