-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
8u202
-
x86_64
-
windows_10
ADDITIONAL SYSTEM INFORMATION :
HP / Windows / Java-8
A DESCRIPTION OF THE PROBLEM :
We are expecting ConcurrentModificationException, While iterating the elements from ArrayList using advance for loop at the same time we are trying to remove the element (Removing the second last element) from the the same ArrayList, but we are not getting any ConcurrentModificationException.
REGRESSION : Last worked in version 8u211
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
package corejava.collection;
import java.lang.reflect.Field;
import java.util.ArrayList;
public class ListImplementation {
public static void main(String[] args) throws Exception {
ArrayList<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list.add("D");
System.out.println("Before removing element: "+ list);
for (String s : list) {
if(s.equals("C"))
list.remove(s);
}
System.out.println("After removing element: "+ list);
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
at java.util.ArrayList$Itr.next(Unknown Source)
at corejava.collection.ListImplementation.main(ListImplementation.java:15)
ACTUAL -
Running normally:
O/P:
Before removing element: [A, B, C, D]
After removing element: [A, B, D]
---------- BEGIN SOURCE ----------
package corejava.collection;
import java.lang.reflect.Field;
import java.util.ArrayList;
public class ListImplementation {
public static void main(String[] args) throws Exception {
ArrayList<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list.add("D");
System.out.println("Before removing element: "+ list);
for (String s : list) {
if(s.equals("C"))
list.remove(s);
}
System.out.println("After removing element: "+ list);
}
}
---------- END SOURCE ----------
FREQUENCY : always
HP / Windows / Java-8
A DESCRIPTION OF THE PROBLEM :
We are expecting ConcurrentModificationException, While iterating the elements from ArrayList using advance for loop at the same time we are trying to remove the element (Removing the second last element) from the the same ArrayList, but we are not getting any ConcurrentModificationException.
REGRESSION : Last worked in version 8u211
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
package corejava.collection;
import java.lang.reflect.Field;
import java.util.ArrayList;
public class ListImplementation {
public static void main(String[] args) throws Exception {
ArrayList<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list.add("D");
System.out.println("Before removing element: "+ list);
for (String s : list) {
if(s.equals("C"))
list.remove(s);
}
System.out.println("After removing element: "+ list);
}
}
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Exception in thread "main" java.util.ConcurrentModificationException
at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
at java.util.ArrayList$Itr.next(Unknown Source)
at corejava.collection.ListImplementation.main(ListImplementation.java:15)
ACTUAL -
Running normally:
O/P:
Before removing element: [A, B, C, D]
After removing element: [A, B, D]
---------- BEGIN SOURCE ----------
package corejava.collection;
import java.lang.reflect.Field;
import java.util.ArrayList;
public class ListImplementation {
public static void main(String[] args) throws Exception {
ArrayList<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list.add("D");
System.out.println("Before removing element: "+ list);
for (String s : list) {
if(s.equals("C"))
list.remove(s);
}
System.out.println("After removing element: "+ list);
}
}
---------- END SOURCE ----------
FREQUENCY : always
- duplicates
-
JDK-8136821 ConcurrentModificationException not thrown when removing the next to last element , less than expected number of iterations
-
- Closed
-