Languages
[Edit]
EN

Java - copy List to another list

0 points
Created by:
Tomeriko
383

In this article, we would like to show you how to copy a List to another list in Java.

Quick solution:

List<String> copiedArrayList = new ArrayList<>(arrayList);

 

Practical examples

In these examples, we will show how to copy ArrayList of Strings to another ArrayList.

1. Using the constructor

import java.util.ArrayList;
import java.util.List;

public class Example {

    public static void main(String[] args) {
        List<String> originalArrayList = new ArrayList<>();
        originalArrayList.add("x");
        originalArrayList.add("y");

        List<String> copiedArrayList = new ArrayList<>(originalArrayList);

        System.out.println(copiedArrayList);
    }
}

output:

[x, y]

2. Using addAll() method

import java.util.ArrayList;
import java.util.List;

public class Example {

    public static void main(String[] args) {
        List<String> originalArrayList = new ArrayList<>();
        originalArrayList.add("x");
        originalArrayList.add("y");

        List<String> copiedArrayList = new ArrayList<>();
        copiedArrayList.addAll(originalArrayList);

        System.out.println(copiedArrayList);
    }
}

output:

[x, y]

Alternative titles

  1. Java - copy ArrayList to another list
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - collections

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join