List add() Method in Java with Examples Last Updated : 16 Feb, 2024 Comments Improve Suggest changes Like Article Like Report The List add() method adds (appends) an element to a list. It can be used for both ArrayList and LinkedList. Example of List add() Method: Java // Java program to demonstrate // ArrayList usage import java.io.*; import java.util.ArrayList; import java.util.List; class GFG { public static void main (String[] args) { // Create a new ArrayList List<String> newList = new ArrayList<>(); // Add elements to the ArrayList newList.add("Hello"); newList.add("World"); // Print the ArrayList System.out.println(newList); } } Output: [Hello, World]SyntaxThe add method has two overloads. It can be used with the index parameter and without the index parameter: MethodDescriptionadd(E element)It is used to add(append ) a new element at the end of the list.add(int Index, E element)It is used to add a new element at a specific index.Parameterselement- Element to be added to the list.Index- Index at which element needs to be added.ReturnsIt returns true if the specified element is appended and the list changes. ExceptionsClassCastException- When the class of an element prevents it from being added to the list.NullPointerException- When the element is Null and the list doesn't allow a null value.UnsupportedOperationException- When the list doesn't support add operation.IllegalArgumentException- When a property of an element prevents it from being added to a list.Java List add() Method ExamplesLet's look at some examples of how to use the list add() method in Java. Example 1:How to add an element to a list in Java using the add(Element E) method: Java // Java code to show the implementation of // add method in list interface import java.util.*; public class GfG { // Driver code public static void main(String[] args) { List<Integer> l = new ArrayList<>(); l.add(10); l.add(15); l.add(20); System.out.println(l); } } Output[10, 15, 20]Example 2:How to add an element at a specific index in a list in Java using the add(int I, Element E) method. Java // Java code to show the implementation of // add method in list interface import java.util.*; public class GfG { // Driver code public static void main(String[] args) { List<Integer> l = new ArrayList(); l.add(10); l.add(15); l.add(1,20); System.out.println(l); } } Output[10, 20, 15]Example 3:How to add an element to a LinkedList in Java using the add() method. Java // Java code to show the implementation of // add method in list interface using LinkedList import java.util.*; public class CollectionsDemo { // Driver code public static void main(String[] args) { List<Integer> ll = new LinkedList<>(); ll.add(100); ll.add(200); ll.add(300); ll.add(400); ll.add(500); System.out.println(ll); } } Output[100, 200, 300, 400, 500]Reference: Official Oracle Docs Whether you are a beginner starting Java programming or an experienced looking to brush up on your Java skills, this tutorial will provide you with a deep understanding of the add function and its uses in Java. The add method in Java is a fundamental function for list manipulation. With this guide, you can easily add/append a new element to a list using the add method. Read More: Java List Methods Comment More infoAdvertise with us Next Article AbstractList set() Method in Java with Examples B barykrg Follow Improve Article Tags : Java Java-Collections Java - util package Java-Functions java-list +1 More Practice Tags : JavaJava-Collections Similar Reads Java List Interface The List Interface in Java extends the Collection Interface and is a part of the java.util package. It is used to store the ordered collections of elements. In a Java List, we can organize and manage the data sequentially. Key Features:Maintained the order of elements in which they are added.Allows 15+ min read List add() Method in Java with Examples The List add() method adds (appends) an element to a list. It can be used for both ArrayList and LinkedList. Example of List add() Method: Java // Java program to demonstrate // ArrayList usage import java.io.*; import java.util.ArrayList; import java.util.List; class GFG { public static void main ( 3 min read AbstractList set() Method in Java with Examples The set() method of java.util.AbstractList class is used to replace any particular element in the abstract list created using the AbstractList class with another element. This can be done by specifying the position of the element to be replaced and the new element in the parameter of the set() metho 3 min read List indexOf() Method in Java with Examples This method returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element. Example:Java// Java Program to Implement List // indexOf() Method import java.util.*; class GFG { public static void main (String[] args) { // List Created Li 2 min read List lastIndexOf() Method in Java with Examples This method returns the last index of the occurrence of the specified element in this list, or -1 if this list does not contain the element. Example:Java// Java Program to demonstrate List // lastIndexOf() Method import java.util.*; class GFG { public static void main (String[] args) { // Created Li 2 min read List remove(Object obj) method in Java with Examples The remove(Object obj) method of List interface in Java is used to remove the first occurrence of the specified element obj from this List if it is present in the List. Example:Java// Java Program Illustrate List // remove(Element) Method import java.util.*; class GFG { public static void main (Stri 2 min read List get() method in Java with Examples The get() method of List interface in Java is used to get the element present in this list at a given specific index. Example:Java// Java Program to demonstrate List // get() Method import java.util.*; class Main { public static void main (String[] args) { // Create a List List<Integer> a=new 2 min read List contains() method in Java with Examples The contains() method of List interface in Java is used for checking if the specified element exists in the given list or not. Example:Java// Java Program to Demonstrate // List contains() Method import java.util.*; class GFG { public static void main (String[] args) { List<Integer> l = new Ar 3 min read List add(int index, E element) method in Java The add(int index, E ele) method of List interface in Java is used to insert the specified element at the given index in the current list. Implementation:Java// Java code to illustrate add(int index, E elements) import java.util.*; public class ArrayListDemo { public static void main(String[] args) 2 min read List addAll() Method in Java with Examples This method appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator. Syntax: boolean addAll(Collection c) Parameters: This function has a single parameter, i.e, Collection c, whose elements are to be 2 min read Like