- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to Clone a List in Java?
To clone a list in Java, the easiest way is using the ArrayList.clone() method −
Example
import java.util.ArrayList; public class Demo { public static void main(String args[]) { // create an empty array list ArrayList<StringBuilder> arrlist1 = new ArrayList<StringBuilder>(); // use add for new value arrlist1.add(new StringBuilder("Learning-")); // using clone to affect the objects pointed to by the references. ArrayList arrlist2 = (ArrayList) arrlist1.clone(); // appending the string StringBuilder strbuilder = arrlist1.get(0); strbuilder.append("list1, list2-both pointing to the same StringBuilder"); System.out.println("The 1st list prints: "); // both lists will print the same value, printing list1 for (int i = 0; i < arrlist1.size(); i++) { System.out.print(arrlist1.get(i) + " "); } System.out.println("
The 2nd list prints the same i.e:"); // both lists will print the same value, printing list2 for (int i = 0; i < arrlist2.size(); i++) { System.out.print(arrlist2.get(i)); } } }
Output
The 1st list prints: Learning-list1, list2-both pointing to the same StringBuilder The 2nd list prints the same i.e: Learning-list1, list2-both pointing to the same StringBuilder
Example
Let us see another example to clone a List in Java −
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; public class Example { public static void main(String[] args) { List<String> myList = Arrays.asList("Welcome", "to", "the", "website"); System.out.print("Initial List = "+myList); List<String> newList = myList.stream().collect(Collectors.toList()); } }
Output
Initial List = [Welcome, to, the, website] Cloned List = [Welcome, to, the, website]
- Related Articles
- How to clone a generic list in C#?
- How to Clone a Map in Java
- How to clone or copy a list in Python?
- How to clone or copy a list in Kotlin?
- How to copy or clone a C# list?
- How to copy or clone a Java ArrayList?
- Python program to clone or copy a list.
- C# program to clone or copy a list
- Clone IdentityHashMap in Java
- Clone HashMap in Java
- clone() method in Java\n
- Clone an ArrayList in Java
- How to clone a GitHub repository?
- How to clone a Date object in JavaScript?
- Demonstrate the clone() method in Java

Advertisements