search
HomeJavajavaTutorialaddAll() in Java
addAll() in JavaAug 30, 2024 pm 03:36 PM
java

In Java ArrayList, a method addAll() helps append every element available in the argument collection to the list present at the end. The appended elements will be ordered using the iterator of argument collection. In addition to that, this method first makes sure that there is enough space on the list. If enough space is unavailable, it will be grown by adding spaces in the existing array. After this only, elements will be added to the end of the list. Even though it is possible to add any element in the array list, it is best to add elements of a particular type available in the given instance.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Syntax with parameters:

Below is the syntax of the addAll() method:

addAll(int index, Collection extends E> c)

Parameters:

1. index: Index where the first element has to be inserted in the collection mentioned.

2. c: Collection containing the elements that must be added to the list.

3. Return Value: True will be returned if the particular list has changed on calling this method.

4. Exception: There may occur two types of exceptions, such as:

  • NullPointerException occurs when the collection mentioned is null.
  • IndexOutOfBoundsException, which occurs when the index is out of range.

How does the addAll() method work in Java?

addAll() method appends the elements at the end of the array list. If a new element comes, it will check whether there is space for that element. If there is no space, then the ArrayList will add spaces. Once the spaces are added, the element will be added to its end.

Given below are the examples of addAll() in Java:

Example #1: addAll(Collection c)

This method helps in adding elements of the collection mentioned to an ArrayList.

Code:

import java.util.*;
public class AddAllExample
{
public static void main(String[] args)
{
ArrayList<string> A1 = new ArrayList();   //Array list 1
//add elements to arraylist 1
A1.add("Anna Sam");
A1.add("Izanorah Denan");
A1.add("Adam Sam");
A1.add("Annamu S");
A1.add("Naasy D");
A1.add("Thukidi D");
A1.add("Kuffi D");
A1.add("Samcha T");
ArrayList<string> A2 = new ArrayList();   //Array list 2
//add element to arraylist 2
A2.add("Anabeth Denan");
//Combine the arraylist 1 and arraylist 2
A1.addAll(A2);
//print the combined list
System.<em>out</em>.println(A1);
}
}</string></string>

Output:

addAll() in Java

Explanation:

Create an ArrayList A1 and add elements. Similarly, create an arraylist A2 and add elements to it as well. Then, add elements of A2 to A1 and print the arraylist A1.

Example #2: addAll (int fromIndex, Collection c)

Unlike the previous method, this method is an overloaded variant. An argument ‘fromIndex’ is added here, which inserts the beginning element from the collection mentioned. Usually, the starting index is ‘0’.

Code:

import java.util.*;
public class AddAllExample
{
public static void main(String[] args)
{
ArrayList<string> A1 = new ArrayList();   //Array list 1
//add elements to arraylist 1
A1.add("Izanorah Denan");
A1.add("Adam Sam");
A1.add("Annamu S");
A1.add("Naasy D");
A1.add("Thukidi D");
A1.add("Princy v");
A1.add("Kuffi D");
A1.add("Samcha T");
ArrayList<string> A2 = new ArrayList();   //Array list 2
//add element to arraylist 2
A2.add("Anabeth Denan");
//Combine the arraylist 1 and arraylist 2
A1.addAll(A2);
//print the combined list
System.<em>out</em>.println("Combined A1 and A2 list :"+ A1);
ArrayList<string> A3 = new ArrayList();   //Array list 3
//add element to arraylist 3
A3.add("Riyan Jaykar");
A3.add("Kukku Chikku");
//Combine the arraylist 1 and arraylist 3 starting from 2nd position
A1.addAll(2, A3);
//print the combined list
System.<em>out</em>.println("Combined A1 and A3 list :"+ A1);
}
}</string></string></string>

Output:

addAll() in Java

Explanation:

Create an arraylist A1 and A2. Then, add elements of A2 to A1 and print the arraylist A1. Once you have completed that, create an ArrayList called A3 and add elements to it. After that, add elements of A3 to A1 starting from index two and print the arraylist A1. This program will help you understand how to insert elements from a particular index.

Let us see some more examples of the addall() method.

Example #3

Code:

import java.util.*;
public class AddAllExample
{
public static void main(String[] args)
{
ArrayList<string> A1 = new ArrayList();   //Array list 1
ArrayList<string> A2 = new ArrayList();   //Array list 2
//add element to arraylist 2
A2.add("Anabeth Denan");
//Combine the arraylist 1 and arraylist 2
A1.addAll(A2);
//print the combined list
System.<em>out</em>.println("Combined A1 and A2 list :"+ A1);
}
}</string></string>

Output:

addAll() in Java

Explanation:

Create an arraylist A1 and A2. Then, add elements to A2 only. Print the elements after combining A1 and A2. Even if ArrayList A1 is empty, we can add elements of ArrayList A2 to A1.

Example #4

Code:

import java.util.*;
public class Main
{
public static void main(String[] args)
{
ArrayList<string> A1 = new ArrayList();   //Array list 1
//add elements to arraylist 1
A1.add("Izanorah Denan");
A1.add("Adam Sam");
A1.add("Annamu S");
A1.add("Naasy D");
A1.add("Thukidi D");
A1.add("Princy v");
ArrayList<string> A2 = new ArrayList();   //Array list 2
//add element to arraylist 2
A2.add("Anabeth Denan");
//Combine the arraylist 1 and arraylist 2
A1.addAll(A2);
//print the combined list
System.out.println("Combined A1 and A2 list :"+ A1);
ArrayList<string> A3 = new ArrayList();   //Array list 3
//add element to arraylist 3
A3.add("Riyan Jaykar");
A3.add("Kukku Chikku");
//Combine the arraylist 2 and arraylist 3 starting from first position
A2.addAll(1, A3);
//print the combined list
System.out.println("Combined A2 and A3 list :"+ A2);
}
}</string></string></string>

Output:

addAll() in Java

Explanation:

Create an arraylist A1 and A2. Then, add elements of A2 to A1 and print the arraylist A1. Once you have done this, create an ArrayList A3 and add elements to it. After that, add elements of A3 to A1 starting from index 1 and print the arraylist A1. Unlike the second program in this document, this program combines the ArrayList A2 and A3. While combining ArrayList A2 with A1, the original ArrayList A2 remains unchanged, as demonstrated in the provided sample output.

Conclusion

addAll() is a method in the arraylist of Java that helps append every element available in the argument collection to the list present at the end.

The above is the detailed content of addAll() in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.