java.util.ConcurrentModificationException when adding another object
Solution 1:
You cannot modify the collection
you are iterating on. That might throw a ConcurrentModificationException
. Though it might work sometimes, but it is not guaranteed to work everytime.
If you want to add, or remove something from your list, you need to use an Iterator
, or ListIterator
for your list. And use ListIterator#add
method to add anything in your list. Even if in your iterator
, if you try to use List.add
or List.remove
, you will get that exception, because that doesn't make any difference. You should use the methods of iterator
.
See these posts to understand how to use it: -
- Java : ConcurrentModificationException while iterating over list
- Iterating through a Collection, avoiding ConcurrentModificationException when removing in loop
Solution 2:
Reason?
Iterators returned by ArrayList is fail-fast
in nature.
The iterators returned by this class's iterator and
listIterator
methods arefail-fas
t: if the list is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw aConcurrentModificationException
. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.
Where does this iterator Come from while I am not using it?
For enhanced for loop for collections Iterator
gets used so you can not call add
method while you are iterating.
So your loop is same as below
for (Iterator<Entry> i = c.iterator(); i.hasNext(); ){
What is the Solution Then ?
You can call iterator.add();
and change loop based on iterator explicitly rather than implicitly.
String inputWord = "john";
ArrayList<String> wordlist = new ArrayList<String>();
wordlist.add("rambo");
wordlist.add("john");
for (ListIterator<String> iterator = wordlist.listIterator(); iterator
.hasNext();) {
String z = iterator.next();
if (z.equals(inputWord)) {
iterator.add("3");
}
}
System.out.println(wordlist.size());
Now Where Can I Read more?
- The For-Each Loop
- ArrayList Java docs