欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java List的remove()方法踩坑

程序员文章站 2022-06-16 21:29:03
目录1、普通for循环遍历list删除指定元素--错误!!!2、for循环遍历list删除元素时,让索引同步调整--正确!3、倒序遍历list删除元素--正确!4、foreach遍历list删除元素-...

java的list在删除元素时,一般会用list.remove(o)/remove(i)方法。在使用时,容易触碰陷阱,得到意想不到的结果。总结以往经验,记录下来与大家分享。

首先初始化list,代码如下:

package com.cicc.am.test;
 
import java.util.arraylist;
import java.util.list;
 
public class listtest {
 
 public static void main(string[] args) {
  list<integer> list=new arraylist<integer>();
  list.add(1);
  list.add(2);
  list.add(3);
  list.add(3);
  list.add(4);
  system.out.println(list);
 }
}

输出结果为[1, 2, 3, 3, 4]

1、普通for循环遍历list删除指定元素--错误!!!

for(int i=0;i<list.size();i++){
   if(list.get(i)==3) list.remove(i);
}
system.out.println(list);

输出结果:[1, 2, 3, 4]

为什么元素3只删除了一个?本以为这代码再简单不过,可还是掉入了陷阱里,上面的代码这样写的话,元素3是过滤不完的。只要list中有相邻2个相同的元素,就过滤不完。list调用remove(index)方法后,会移除index位置上的元素,index之后的元素就全部依次左移,即索引依次-1要保证能操作所有的数据,需要把index-1,否则原来索引为index+1的元素就无法遍历到(因为原来索引为index+1的数据,在执行移除操作后,索引变成index了,如果没有index-1的操作,就不会遍历到该元素,而是遍历该元素的下一个元素)。

  如果这样,删除元素后同步调整索引或者倒序遍历删除元素,是否可行呢?

2、for循环遍历list删除元素时,让索引同步调整--正确!

for(int i=0;i<list.size();i++){
   if(list.get(i)==3) list.remove(i--);
}
system.out.println(list);

输出结果:[1, 2, 4]

3、倒序遍历list删除元素--正确!

for(int i=list.size()-1;i>=0;i--){
 if(list.get(i)==3){
  list.remove(i);
 }
}
system.out.println(list);

输出结果:[1, 2, 4]

4、foreach遍历list删除元素--错误!!!

for(integer i:list){
    if(i==3) list.remove(i);
}
system.out.println(list);

抛出异常:java.util.concurrentmodificationexception

foreach 写法实际上是对的 iterable、hasnext、next方法的简写。因此从list.iterator()源码着手分析,跟踪iterator()方法,该方法返回了 itr 迭代器对象。

  public iterator<e> iterator() {
        return new itr();
    }

itr 类定义如下:

private class itr implements iterator<e> {
        int cursor;       // index of next element to return
        int lastret = -1; // index of last element returned; -1 if no such
        int expectedmodcount = modcount;
 
        public boolean hasnext() {
            return cursor != size;
        }
 
        @suppresswarnings("unchecked")
        public e next() {
            checkforcomodification();
            int i = cursor;
            if (i >= size)
                throw new nosuchelementexception();
            object[] elementdata = arraylist.this.elementdata;
            if (i >= elementdata.length)
                throw new concurrentmodificationexception();
            cursor = i + 1;
            return (e) elementdata[lastret = i];
        }
 
        public void remove() {
            if (lastret < 0)
                throw new illegalstateexception();
            checkforcomodification();
 
            try {
                arraylist.this.remove(lastret);
                cursor = lastret;
                lastret = -1;
                expectedmodcount = modcount;
            } catch (indexoutofboundsexception ex) {
                throw new concurrentmodificationexception();
            }
        }
 
        final void checkforcomodification() {
            if (modcount != expectedmodcount)
                throw new concurrentmodificationexception();
        }
    }

通过代码我们发现 itr 是 arraylist 中定义的一个私有内部类,在 next、remove方法中都会调用checkforcomodification 方法,该方法的 作用是判断 modcount != expectedmodcount是否相等,如果不相等则抛出concurrentmodificationexception异常。每次正常执行 remove 方法后,都会对执行expectedmodcount = modcount赋值,保证两个值相等,那么问题基本上已经清晰了,在 foreach 循环中

执行 list.remove(item);,对 list 对象的 modcount 值进行了修改,而 list 对象的迭代器的 expectedmodcount 值未进行修改,因此抛出了concurrentmodificationexception异常。

5、迭代删除list元素--正确!

java中所有的集合对象类型都实现了iterator接口,遍历时都可以进行迭代:

iterator<integer> it=list.iterator();
 while(it.hasnext()){
  if(it.next()==3){
   it.remove();
  }
        }
system.out.println(list);

输出结果:[1, 2, 4]

iterator.remove() 方法会在删除当前迭代对象的同时,会保留原来元素的索引。所以用迭代删除元素是最保险的方法,建议大家使用list过程

中需要删除元素时,使用这种方式。

6、迭代遍历,用list.remove(i)方法删除元素--错误!!!

iterator<integer> it=list.iterator();
 while(it.hasnext()){
  integer value=it.next();
   if(value==3){
   list.remove(value);
  }
 }
system.out.println(list);

抛出异常:java.util.concurrentmodificationexception,原理同上述方法4.

7、list删除元素时,注意integer类型和int类型的区别.

上述integer的list,直接删除元素2,代码如下:

list.remove(2);
system.out.println(list);

输出结果:[1, 2, 3, 4]

可以看出,list删除元素时传入数字时,默认按索引删除。如果需要删除integer对象,调用remove(object)方法,需要传入integer类型,代码如下:

list.remove(new integer(2));
system.out.println(list);

输出结果:[1, 3, 3, 4]

总结:

   1、用for循环遍历list删除元素时,需要注意索引会左移的问题。

   2、list删除元素时,为避免陷阱,建议使用迭代器iterator的remove方式。

   3、list删除元素时,默认按索引删除,而不是对象删除。

到此这篇关于java list的remove()方法踩坑的文章就介绍到这了,更多相关java list remove()内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!