Java Collection Tutorial - Java LinkedList.clone()








Syntax

LinkedList.clone() has the following syntax.

public Object clone()

Example

In the following code shows how to use LinkedList.clone() method.

//from  ww  w  .ja  v a 2 s  .co m

import java.util.LinkedList;

public class Main {

   public static void main(String[] args) {

      // create a LinkedList
      LinkedList<String> list = new LinkedList<String>();

      // add some elements
      list.add("Hello");
      list.add("from java2s.com");
      list.add("10");

      // print the list
      System.out.println("LinkedList:" + list);

      // create a second LinkedList
      LinkedList list2 = new LinkedList();

      // clone list1
      list2 = (LinkedList) list.clone();

      // print list2
      System.out.println("LinkedList 2:" + list2);
   }
}

The code above generates the following result.