In Java, how to add two lists?
We can use the addAll() method of List to add two lists.
Use the addAll() method without an index parameter
boolean addAll(Collection<? extends E> c)
Appends all elements in the specified collection to the end of this list in the order returned by the iterator of the specified collection (optional operate). If the specified collection is modified while the operation is in progress, the behavior of the operation is undefined. (Note that this will happen if the specified collection is this list and it is non-empty.).
Parameters
c - The collection containing the elements to be added to this list.
Returns
Returns True if this list changed as a result of the call.
Throws
UnsupportedOperationException - if this list does not support the addAll operation.
ClassCastException - If the class of an element of the specified collection prevents it from being added to this list.
- < p>NullPointerException - If the specified collection contains one or more null elements and this list does not allow null elements, or the specified collection is null.
- < p>IllegalArgumentException - if some property of an element of the specified collection prevents it from being added to this list.
Use the addAll() method with index parameters
boolean addAll(int index, Collection<? extends E> c)
Insert all elements in the specified collection into the specified position of this list (optional operation). Moves the element currently at that position (if any) and any subsequent elements to the right (increases their index). New elements will appear in this list in the order returned by the iterator of the specified collection. If the specified collection is modified while the operation is in progress, the behavior of the operation is undefined. (Note that this will occur if the specified collection is this list and it is non-empty.)
Parameters
index< /strong> - Index of inserting the first element from the specified collection.
#c - The collection containing the elements to be added to this list.
Returns
Returns True if this list changed as a result of the call.
Throws
UnsupportedOperationException - if this list does not support the addAll operation.
ClassCastException< /strong> - if the class of an element of the specified collection prevents it from being added to this list.
NullPointerException - If the specified collection contains one or more null elements and this list does not allow null elements, or the specified collection is null.
IllegalArgumentException - If an element of the collection specified by a property prevents it from being added to this list.
IndexOutOfBoundsException - if the index is out of bounds (index < 0 | | index > size()).
Example
The following example shows how to add two lists using the addAll() method -
package com.tutorialspoint; import java.util.ArrayList; import java.util.List; public class CollectionsDemo { public static void main(String[] args) { List<String> list = new ArrayList<>(); list.add("A"); list.add("B"); list.add("C"); System.out.println("List: " + list); List<String> list1 = new ArrayList<>(); list1.add("D"); list1.add("E"); list1.add("F"); System.out.println("List1: " + list1); list.addAll(list1); System.out.println("Updated List: " + list); List<String> list2 = new ArrayList<>(); list2.add("G"); list2.add("H"); list2.add("I"); list2.addAll(0, list); System.out.println("List2: " + list2); } }
Output
This will produce The following results-
List: [A, B, C] List1: [D, E, F] Updated List: [A, B, C, D, E, F] List2: [A, B, C, D, E, F, G, H, I]
The above is the detailed content of In Java, how to add two lists?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
