I\'m suffering on this exception. What\'s the problem on my code?
I just want to separate Person\'s duplicate name in another ArrayList
public c
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: -
Acc. to Java Docs:
if a thread modifies a collection directly while it is iterating over the collection with a fail-fast iterator, the iterator will throw this exception.
You are tyring to add a Person
object while iterating it using Enhanced For loop.
You can do following modification:
boolean duplicateFound = false;
for(Person p : ps)
{
if(p.name.equals(p1.name))
{
duplicates.add(p1);
duplicateFound = true;
}
}
if( ! duplicateFound)
{
ps.add(p1);
}
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.
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(); ){
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());