Java ArrayList get() Method



Description

The Java ArrayList get(int index) method returns the element at the specified position in this list. Index starts from 0 like first element can be retrieved using get(0) method call and so on.

Declaration

Following is the declaration for Java.util.ArrayList.get() method

public E get(int index)

Parameters

index − The index of the element to return.

Return Value

This method returns the element at the specified position in this list.

Exception

IndexOutOfBoundsException − if the index is out of range.

Example 1

The following example shows the usage of Java ArrayList get(index) method for Integers. We're adding couple of Integers to the ArrayList object using add() method calls per element and using get(index) method, we're getting one of the element by index and printing it.

package com.tutorialspoint;
import java.util.ArrayList;
public class ArrayListDemo {
   public static void main(String[] args) {
      
      // create an empty array list 
      ArrayList<Integer> arrayList = new ArrayList<>();

      // use add() method to add elements in the arrayList
      arrayList.add(20);
      arrayList.add(30);
      arrayList.add(20);
      arrayList.add(30);
      arrayList.add(15);
      arrayList.add(22);
      arrayList.add(11);

      // let us print the 3rd element
      System.out.println("3rd Element = " + arrayList.get(2));
   }
}

Output

Let us compile and run the above program, this will produce the following result −

3rd Element = 20

Example 2

The following example shows the usage of Java ArrayList get(index) method for Strings. We're adding couple of Strings to the ArrayList object using add() method calls per element and using get(index) method, we're getting one of the element by index and printing it.

package com.tutorialspoint;
import java.util.ArrayList;
public class ArrayListDemo {
   public static void main(String[] args) {
      
      // create an empty array list
      ArrayList<String> arrayList = new ArrayList<>();

      // use add() method to add elements in the arrayList
      arrayList.add("Welcome");
      arrayList.add("To");
      arrayList.add("Tutorialspoint");
	  
      // let us print the 3rd element
      System.out.println("3rd Element = " + arrayList.get(2));     
   }
}

Output

Let us compile and run the above program, this will produce the following result −

3rd Element = Tutorialspoint

Example 3

The following example shows the usage of Java ArrayList get(index) method for Student objects. We're adding couple of Student objects to the ArrayList object using add() method calls per element and using get(index) method, we're getting one of the element by index and printing it.

package com.tutorialspoint;
import java.util.ArrayList;
public class ArrayListDemo {
   public static void main(String[] args) {

      // create an empty arrayList
      ArrayList<Student> arrayList = new ArrayList<>();

      // use add() method to add elements in the arrayList
      arrayList.add(new Student(1, "Julie"));
      arrayList.add(new Student(2, "Robert"));
      arrayList.add(new Student(3, "Adam"));

      // let us print the 3rd element
      System.out.println("3rd Element = " + arrayList.get(2));      
   }
}
class Student {
   int rollNo;
   String name;
   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }
   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

Output

Let us compile and run the above program, this will produce the following result −

3rd Element = [ 3, Adam ]
java_util_arraylist.htm
Advertisements