which thread will get concurrentModificationException with two threads

Viewed 56

I have two thread one thread is adding,removing in ArrayList and another thread iterating with iterator the ArrayList. which thread will get the ConcurrentModificationException;

2 Answers
Related