Tagged Questions
7
votes
9answers
4k views
Does the unmodifiable wrapper for java collections make them thread safe?
I need to make an ArrayList of ArrayLists thread safe. I also cannot have the client making changes to the collection. Will the unmodifiable wrapper make it thread safe or do I need two wrappers on ...