List<Integer> contacts = new Vector<Integer>();
Collections.sort(contacts);
Okay I know a vector is thread safe, but are there any issues if I do the above?
Okay I know a vector is thread safe, but are there any issues if I do the above? |
||||
Each of its methods are thread safe. But
So if your vector is modified by another thread while you are sorting it, you will get an exception. Alternatives if several threads can access your structure include: making a defensive copy or using a concurrent structure such as a CopyOnWriteArrayList. |
||||
|
You can make this code thread safe using this:
|
|||
|
|
contactsduring the sort, then, yes. – dashrb Nov 15 '12 at 18:56