vickyace
0
Q:

ArrayList clone() method in java

import java.util.ArrayList;
public class ArrayListCloneMethodExample
{
   public static void main(String[] args)
   {
      ArrayList<String> al = new ArrayList<String>();
      al.add("violet");
      al.add("indigo");
      al.add("blue");
      al.add("green");
      al.add("yellow");
      System.out.println("ArrayList before using clone() method: " + al);
      // create another ArrayList and copy
      ArrayList<String> arrClone = new ArrayList<String>();
      arrClone = (ArrayList)al.clone();
      System.out.println("ArrayList after using clone() method: " + arrClone);
   }
}
0

New to Communities?

Join the community