小编典典

添加另一个对象时出现java.util.ConcurrentModificationException

java

我在这个例外上受苦。我的代码有什么问题?我只想将Person的重复名称分开ArrayList

public class GlennTestMain
{

    static ArrayList<Person> ps;

    static ArrayList<Person> duplicates;
    public static void main(String[] args)
    {
        ps = new ArrayList<GlennTestMain.Person>();

        duplicates = new ArrayList<GlennTestMain.Person>();

        noDuplicate(new Person("Glenn", 123));
        noDuplicate(new Person("Glenn", 423));
        noDuplicate(new Person("Joe", 1423)); // error here


        System.out.println(ps.size());
        System.out.println(duplicates.size());
    }

    public static void noDuplicate(Person p1)
    {
        if(ps.size() != 0)
        {
            for(Person p : ps)
            {
                if(p.name.equals(p1.name))
                {
                    duplicates.add(p1);
                }
                else
                {
                    ps.add(p1);
                }
            }
        }
        else
        {
            ps.add(p1);
        }
    }

    static class Person
    {
        public Person(String n, int num)
        {
            this.name = n;
            this.age = num;
        }
        String name;
        int age;
    }



}

这是堆栈跟踪

Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
at java.util.ArrayList$Itr.next(Unknown Source)
at hk.com.GlennTestMain.noDuplicate(GlennTestMain.java:41)
at hk.com.GlennTestMain.main(GlennTestMain.java:30)

阅读 224

收藏
2020-09-26

共1个答案

小编典典

您无法修改collection要迭代的对象。那可能会抛出一个ConcurrentModificationException。尽管有时可能会工作,但不能保证每次都能工作。

如果要添加或从列表中删除某些内容,则需要使用IteratorListIterator。并使用ListIterator#add方法在列表中添加任何内容。即使在您的中iterator,如果您尝试使用List.addList.remove,您也会得到该异常,因为那没有任何区别。您应该使用的方法iterator

2020-09-26