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 copy a LinkedList to another LinkedList using the collections

how to copy a LinkedList to another LinkedList using the collections

Previous Home Next

 

In this example we shall see how can we copy LinkedList to another LinkedList.

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 copy() method defined in the java.util.Collections package. The copy() method have the following syntax:
 
void copy(List destlist, List sourcelist);

where destlist is the list to which the sourcelist is to be copied.


In this example we have created two linked lists namely list and stringlist then we add some elements to both of lists and added all the contents of the stringlist to the list by using the addAll() method. The we have invoked the copy() method on the Collections class. The following statement in the given example does exactly the same,

Collections.copy(list, stringlist);   
here list is the destlist to which the sourcelist i.e stringlist is to be copied.

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


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 contents of the object list are :");
ListIterator<Object> ltr=list.listIterator();
while(ltr.hasNext())
{
System.out.println(ltr.next()); // displaying the contents of the list
}

LinkedList<String> stringlist=new LinkedList<String>();
stringlist.add("This");
stringlist.add("is");
stringlist.add("good");
stringlist.add("example");
System.out.println("The elements of the created string list are: ");
System.out.println(stringlist);
list.addAll(stringlist);
ltr=list.listIterator(); // Invoking the ListIterator on the list for iterating through the list
System.out.println("The contents of the added list are as follows :");
while(ltr.hasNext())
{
System.out.println(ltr.next()); // displaying the contents of the list
}


Collections.copy(list, stringlist); // here we are copying the stringlist(source list) to the list(destination list) by using copy method
ltr=list.listIterator();
System.out.println("After copying the list the resulting list is as follows : ");
while(ltr.hasNext())
{
System.out.println(ltr.next());
}


}


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

The contents of the object list are :
1
2
r4r
shashi
s/w engineer
The elements of the created string list are:
[This, is, good, example]
The contents of the added list are as follows :
1
2
r4r
shashi
s/w engineer
This
is
good
example
After copying the list the resulting list is as follows :
This
is
good
example
s/w engineer
This
is
good
example

Previous Home Next