[EDIT] Lot of good advices here, hard to select one. I will choose the more detailed and providing links/food for thoughts... :-) I like Darron's one too.
To summarize:
I hope I got it right... :-)
|
2 | Adding summary | ||
|
[EDIT] Lot of good advices here, hard to select one. I will choose the more detailed and providing links/food for thoughts... :-) I like Darron's one too. To summarize: I hope I got it right... :-) |
||||
|
1 |
|
||
Best way to control concurrent access to Java collectionsShould I use old synchronized Vector collection, ArrayList with synchronized access or Collections.synchronizedList or some other solution for concurrent access? I don't see my question in Related Questions nor in my search (Make your collections thread-safe? isn't the same). Recently, I had to make kind of unit tests on GUI parts of our application (basically using API to create frames, add objects, etc.). A particular issue, happening in the EDT, came from walking a linked list of views while altering it in another thread (getting a ConcurrentModificationException among other problems). Anyway, not super familiar with concurrency issues, I looked up a bit of info, and wondered what to choose between the old (and probably obsolete) Vector (which has synchronized operations by design), ArrayList with a I finally chose the second option, because another design mistake was to expose the object (getViewList() method...) instead of providing mechanisms to use it. But what are the pros and cons of the other approaches?
|
||||