search
HomeJavajavaTutorialaddAll() in Java

addAll() in Java

Aug 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
Is Java Platform Independent if then how?Is Java Platform Independent if then how?May 09, 2025 am 12:11 AM

Java is platform-independent because of its "write once, run everywhere" design philosophy, which relies on Java virtual machines (JVMs) and bytecode. 1) Java code is compiled into bytecode, interpreted by the JVM or compiled on the fly locally. 2) Pay attention to library dependencies, performance differences and environment configuration. 3) Using standard libraries, cross-platform testing and version management is the best practice to ensure platform independence.

The Truth About Java's Platform Independence: Is It Really That Simple?The Truth About Java's Platform Independence: Is It Really That Simple?May 09, 2025 am 12:10 AM

Java'splatformindependenceisnotsimple;itinvolvescomplexities.1)JVMcompatibilitymustbeensuredacrossplatforms.2)Nativelibrariesandsystemcallsneedcarefulhandling.3)Dependenciesandlibrariesrequirecross-platformcompatibility.4)Performanceoptimizationacros

Java Platform Independence: Advantages for web applicationsJava Platform Independence: Advantages for web applicationsMay 09, 2025 am 12:08 AM

Java'splatformindependencebenefitswebapplicationsbyallowingcodetorunonanysystemwithaJVM,simplifyingdeploymentandscaling.Itenables:1)easydeploymentacrossdifferentservers,2)seamlessscalingacrosscloudplatforms,and3)consistentdevelopmenttodeploymentproce

JVM Explained: A Comprehensive Guide to the Java Virtual MachineJVM Explained: A Comprehensive Guide to the Java Virtual MachineMay 09, 2025 am 12:04 AM

TheJVMistheruntimeenvironmentforexecutingJavabytecode,crucialforJava's"writeonce,runanywhere"capability.Itmanagesmemory,executesthreads,andensuressecurity,makingitessentialforJavadeveloperstounderstandforefficientandrobustapplicationdevelop

Key Features of Java: Why It Remains a Top Programming LanguageKey Features of Java: Why It Remains a Top Programming LanguageMay 09, 2025 am 12:04 AM

Javaremainsatopchoicefordevelopersduetoitsplatformindependence,object-orienteddesign,strongtyping,automaticmemorymanagement,andcomprehensivestandardlibrary.ThesefeaturesmakeJavaversatileandpowerful,suitableforawiderangeofapplications,despitesomechall

Java Platform Independence: What does it mean for developers?Java Platform Independence: What does it mean for developers?May 08, 2025 am 12:27 AM

Java'splatformindependencemeansdeveloperscanwritecodeonceandrunitonanydevicewithoutrecompiling.ThisisachievedthroughtheJavaVirtualMachine(JVM),whichtranslatesbytecodeintomachine-specificinstructions,allowinguniversalcompatibilityacrossplatforms.Howev

How to set up JVM for first usage?How to set up JVM for first usage?May 08, 2025 am 12:21 AM

To set up the JVM, you need to follow the following steps: 1) Download and install the JDK, 2) Set environment variables, 3) Verify the installation, 4) Set the IDE, 5) Test the runner program. Setting up a JVM is not just about making it work, it also involves optimizing memory allocation, garbage collection, performance tuning, and error handling to ensure optimal operation.

How can I check Java platform independence for my product?How can I check Java platform independence for my product?May 08, 2025 am 12:12 AM

ToensureJavaplatformindependence,followthesesteps:1)CompileandrunyourapplicationonmultipleplatformsusingdifferentOSandJVMversions.2)UtilizeCI/CDpipelineslikeJenkinsorGitHubActionsforautomatedcross-platformtesting.3)Usecross-platformtestingframeworkss

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools