// // Different methods to deal with ConcurrentModificationException // // We will delete even numbers from a list of random numbers. // // http://docs.oracle.com/javase/tutorial/collections/interfaces/list.html // // import java.lang.reflect.Array; import java.util.ArrayList; public class array { public static void main (String args[]) { int[] i = new int [10]; ArrayList j = new ArrayList(); ArrayList k = new ArrayList<>(); ArrayList l = new ArrayList<>(); } }