-
Bug
-
Resolution: Fixed
-
P3
-
1.4.1, 5.0, 6
-
b78
-
generic, x86
-
generic, linux, windows_xp
-
Verified
This covers changes to Vector, ArrayList, and PriorityQueue
collection constructors that both make them accommodate
traversals with different numbers of elements than reported
size(), and as a byproduct makes them fail less often with
concurrently modified non-concurrent ones.
It is common for academic papers investigating concurrency bugs in the JDK
to cite the classic
Collection c = new Vector();
// Mutate c in another thread
Vector v = new Vector(c); // may fail unexpectedly
Here the concurrency issue is not with "this", but with the
argument collection, which has unknown concurrency properties,
Because of this, synchronized Vector and unsynchronized ArrayList have the same issues.
collection constructors that both make them accommodate
traversals with different numbers of elements than reported
size(), and as a byproduct makes them fail less often with
concurrently modified non-concurrent ones.
It is common for academic papers investigating concurrency bugs in the JDK
to cite the classic
Collection c = new Vector();
// Mutate c in another thread
Vector v = new Vector(c); // may fail unexpectedly
Here the concurrency issue is not with "this", but with the
argument collection, which has unknown concurrency properties,
Because of this, synchronized Vector and unsynchronized ArrayList have the same issues.
- duplicates
-
JDK-4759223 (coll) ArrayList constructor should assign result of Collection.toArray(Object[])
-
- Closed
-
-
JDK-6476227 (coll) ArrayList(Collection) fails for concurrent modified collections
-
- Closed
-
- relates to
-
JDK-6394004 (coll) Thread-safety and Performance improvements to PriorityQueue
-
- Closed
-
-
JDK-6355645 CopyOnWriteArrayList bulk operations have race conditions
-
- Resolved
-
-
JDK-6355660 (coll) Vector(Collection) constructor is not thread safe
-
- Resolved
-