Below are the add() methods of ArrayList in Java:
- boolean add(Object o) : This method appends the specified element to the end of this list.
Parameters: object o: The element to be appended to this list. Exception: NA
// Java code to illustrate add(Object o)importjava.io.*;importjava.util.ArrayList;publicclassArrayListDemo {publicstaticvoidmain(String[] args){// create an empty array list with an initial capacityArrayList<Integer> arrlist =newArrayList<Integer>(5);// use add() method to add elements in the listarrlist.add(15);arrlist.add(20);arrlist.add(25);// prints all the elements available in listfor(Integer number : arrlist) {System.out.println("Number = "+ number);}}}chevron_rightfilter_noneOutput:
Number = 15 Number = 20 Number = 25
- void add(int index, Object element) : This method inserts the specified element E at the specified position in this list.It shifts the element currently at that position (if any) and any subsequent elements to the right (will add one to their indices).
Parameters: index : The index at which the specified element is to be inserted. element : The element to be inserted. Exception: Throws IndexOutOfBoundsException if the specified index is out of range (index size()).
// Java code to illustrate// void add(int index, Object element)importjava.io.*;importjava.util.ArrayList;publicclassArrayListDemo {publicstaticvoidmain(String[] args){// create an empty array list with an initial capacityArrayList<Integer> arrlist =newArrayList<Integer>(5);// use add() method to add elements in the listarrlist.add(10);arrlist.add(22);arrlist.add(30);arrlist.add(40);// adding element 35 at fourth positionarrlist.add(3,35);// let us print all the elements available in listfor(Integer number : arrlist) {System.out.println("Number = "+ number);}}}chevron_rightfilter_noneOutput:
Number = 10 Number = 22 Number = 30 Number = 35 Number = 40
This article is contributed by Shambhavi Singh. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important Java and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.
Recommended Posts:
- Java.util.Collections.rotate() Method in Java with Examples
- Java.util.Collections.disjoint() Method in java with Examples
- Java.lang.string.replace() method in Java
- Java.util.ArrayList.addall() method in Java
- Java.util.BitSet.set() method in Java
- Java 8 | ArrayDeque removeIf() method in Java with Examples
- Java lang.Long.lowestOneBit() method in Java with Examples
- Java lang.Long.numberOfTrailingZeros() method in Java with Examples
- Java lang.Long.numberOfLeadingZeros() method in Java with Examples
- Java lang.Long.highestOneBit() method in Java with Examples
- Java lang.Long.byteValue() method in Java with Examples
- Java lang.Long.reverse() method in Java with Examples
- Java lang.Long.builtcount() method in Java with Examples
- Java.math.BigInteger.modInverse() method in Java
- Java.math.BigInteger.probablePrime() method in Java
- Java Clock tickMinutes() method in Java with Examples
- Java Clock withZone() method in Java with Examples
- Java.lang.Short toString() method in Java with Examples
- Method Class | getName() Method in Java
- Method Class | toGenericString() method in Java

