Core Java Tutorial

Introduction of Core Java

How To Install JDk and Set of Path

Syntax of java Program

Difference between Java and C/C++

Advantage and Disadvantage of Java

What is Java

Why Java is not Pure Object Oriented Language

Java has Following Features/Characteristics

Limitation of Java Language and Java Internet

Common Misconception about Java

Simple Program of Java

Integrated Development Environment in java

Compile and Run Java Program

Applet and Comments in Java

Tokens in Java

Keywords in Java

Identifier and Variables in Java

Literals/Constants

Data Type in Java

Assignments and Initialization in Java

Operators in Java

Rule of Precedence in Java

Operator on Integer and Separators in Java Programming

Java Control Flow of Statements

If and If-else Selection Statement

Nested If-else and If-else-If Selection Statement

switch case and conditional operator Selection Statement

for and while Loop

do..while and for each Loop

break and labeled break statement

continue and labeled continue statement

return Statement and exit() Method

Escape Sequence for Special Characters and Unicode Code

Constants and Block or Scope

Statement in Java

Conversions between Numeric Types in Java

Import Statement in Java

User Input in Java using Scanner Class

User Input in Java using Console Class

Array in Java

One Dimensional Array

Two Dimensional Array

Two Dimensional Array Program

Command Line Argument in Java

String args Types in Java

Uneven/Jagged array in java

Math Class Function and Constant

Math Class all Function used in a program

Enumerated Types in Java

Object Oriented Programming v/s Procedural Programming

Object Oriented Programming Concepts in Java

Introduction to Class,Object and Method in Java

Class Declaration in Java

Class & Objects in java

Encapsulation in Java

Modifiers/Visibility for a Class or Interrface or member of a Class

Polymorphism in Java

Runtime polymorphism (dynamic binding or method overriding)

how to create a clone of LinkedList in collections

how to create a clone of LinkedList in collections

Previous Home Next

 

In this example we shall see how can we create the clone of a Linked List.

In this example we have created a class CollectionExample. For using LinkedList we have
to import the java.util package.
 In this example we have used the clone() method on the object of the LinkedList for creating the clone of it. The syntax of the clone() method is:

Object clone()     
This method returns a copy of the LinkedList object.

In this example we have created a LinkedList list and then added some elements to it. Also we have created another LinkedList name listclone which stores the elements which are returned while invoking the clone() on the list. The following statement of the given example creates the clone of  the list. Finally we have displayed the elements of the cloned list i.e. listclone.
LinkedList<Object> listclone=(LinkedList<Object>)list.clone();


 
package r4r.co.in;
import java.util.*;
import java.util.ListIterator;
import java.util.List;
import java.util.Collection;


public class CollectionExample {

/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub


LinkedList<Object> list=new LinkedList<Object>(); // creating a LinkedList of Object type elements
list.add(1); // adding integer values to the LinkedList
list.add(2);
list.add("r4r"); // adding String values to the LinkedList
list.add("shashi");
list.add("s/w engineer");
//System.out.println("The peek method retruns :"+list.peek()); // this retrieves the first element i.e. head of linked list
//System.out.println("The poll method returns :"+list.poll()); // this retrieves and removes the first element i.e. head of the LinkedList
LinkedList<Object> listclone=(LinkedList<Object>)list.clone(); //creating a clone of LinkedList list
System.out.println("The content of the cloned list is :"+listclone); // displaying the contents of the cloned list
listclone.remove(2); //removing the element at index 2 from the listclone
System.out.println("Now the contents of the list are :"+listclone); // displaying the contents of the listclone after removing the element
System.out.println("The contents of the original list are as follows: ");

ListIterator<Object> ltr=list.listIterator(); // Invoking the ListIterator on the list for iterating through the list
while(ltr.hasNext())
{
System.out.println(ltr.next()); // displaying the contents of the list
}


}


}
The output of the above program will be as follows:

The content of the cloned list is :[1, 2, r4r, shashi, s/w engineer]
Now the contents of the list are :[1, 2, shashi, s/w engineer]
The contents of the original list are as follows:
1
2
r4r
shashi
s/w engineer

Previous Home Next