ArrayList<Integer> str=new ArrayList<Integer>(); str.add(0); str.add(1); // Result = [0, 1] str.add(1, 11); // Result = [0, 11, 1]