I'm making a game in Java. Every enemy in the game is a thread and they are constantly looping through the game's data structures (I always use the class Vector).

Lately I have been getting the "ConcurrentModificationException" because an element is being added/removed from a Vector while a Thread is looping through it. I know there are strategies to avoid the add/remove problem (I actually use some to avoid problems with Removes but I still have problems with "Adds").

I heard that java supports a Vector/List that avoids the ConcurrentModificationException.

Do you have any idea of what this structure might be? Thanks.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

CopyOnWriteArrayList. But read its javadocs carefully and consider if in practice it gives the behavior that you are expecting (check Memory Consistence effects), plus if the performance overhead is worth it. Besides synchronization with ReentrantReadWriteLock, AtomicReferences, and Collections.synchronizedList may help you.

link|improve this answer
Remember to link current documentation. – Hunter McMillen Nov 25 '11 at 23:03
Thank you SO MUCH! Everything works perfectly now :) – Rama Nov 26 '11 at 0:01
feedback

Check out java.util.concurrent, it has what you're looking for.

link|improve this answer
1  
Remember to link current documentation – Hunter McMillen Nov 25 '11 at 23:04
@HunterMcmillen -- thanks for the heads-up, fixed now. (1.7 is the current one, right?) – Matt Fenwick Nov 25 '11 at 23:06
Yes, 1.7 is current – Hunter McMillen Nov 25 '11 at 23:21
2  
ConcurrentModificationException doesn't necessarily have anything to do with thread-based concurrency; it's easy enough to provoke in a program accessing the collections on only one thread. While it's true that the collections that address the OP's problem lie within the package you mention, I think more explanation of the underlying problem is due. – seh Nov 25 '11 at 23:35
Thank you SO MUCH! Everything works perfectly now :) – Rama Nov 26 '11 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.