-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
7u80, 8, 9
java version "1.8.0_40"
Java(TM) SE Runtime Environment (build 1.8.0_40-b26)
Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows [Version 6.1.7601]
A DESCRIPTION OF THE PROBLEM :
The method
java.util.AbstractList.Itr.hasNext()
does not check for modification.
That leads in one missing iteration loop when removing the next to last element.
Assumtion is that when "for each" over an list with 3 elements the loop is performed exactly 3 times or a ConcurrentModificationException is thrown.
When performing the next code the loop is iterated 2 times only and no exception is coming up:
@Test
public void testRemove2ndOf3() {
List<String> tempArrayList = new ArrayList<String>();
tempArrayList.add("1");
tempArrayList.add("2");
tempArrayList.add("3");
List<String> tempIterated = new ArrayList<String>();
for (String tempString : tempArrayList) {
tempIterated.add(tempString);
if (tempString.equals("2")) {
tempArrayList.remove(tempString);
// 3 is still in the list
}
}
assertEquals("Expected to iterate 3 times, but found only " + tempIterated, 3, tempIterated.size());
// Normally fail("Expected ConcurrentModificationException");
}
Currently loop is performed without exception but the checking List tempIterated contains [1,2] only.
When removing the "1" element instead of "2" the above code throws an ConcurrentModificationException as expected.
ADDITIONAL REGRESSION INFORMATION:
java version "1.8.0_40"
Java(TM) SE Runtime Environment (build 1.8.0_40-b26)
Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode)
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Perform the test testRemove2ndOf3 specified in the Description.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
ConcurrentModificationException
ACTUAL -
Loop is iterated 2 times and terminates normallly (even there were 3 elements in)
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
Do not remove in an foreach loop at all (is best practice anyway)
- duplicates
-
JDK-8185622 Able to delete a element from list using list remove() while iteration the same list.
-
- Closed
-
-
JDK-8210207 Concurrent Modification Exception not thrown when removing second last element from list
-
- Closed
-
-
JDK-8246702 ConcurrentModification Exception not thrown while removing second last element
-
- Closed
-
-
JDK-8260400 ArrayList's iterator() is broken: Fails to check for expectedModCount in hasNext
-
- Closed
-
-
JDK-8265904 ArrayList remove() method implementation issue
-
- Closed
-
-
JDK-8151423 No java.util.ConcurrentModificationException thrown when removing from a java.util.ArrayList in a for-each loop
-
- Closed
-
-
JDK-8182026 Remove method is not throwing java.util.ConcurrentModificationException in List
-
- Closed
-
-
JDK-8228354 Expecting ConcurrentModificationException while iterating & calling list.remove
-
- Closed
-
-
JDK-8230377 Iterator created before List modification should throw Exception (CME)
-
- Closed
-
-
JDK-8230644 ConcurrentModificationException is not thrown.
-
- Closed
-
- relates to
-
JDK-8114832 it.next on ArrayList throws wrong type of Exception after remove(-1)
-
- Open
-
-
JDK-4902078 concurrent modification not detected on 2nd to last iteration
-
- Closed
-