Thursday, October 9, 2025
HomeLanguagesJavaArray getInt() Method in Java

Array getInt() Method in Java

The java.lang.reflect.Array.getInt() is an inbuilt method in Java and is used to return an element at the given index from the specified Array as a int.

Syntax

Array.getInt(Object []array, int index)

Parameters: This method accepts two mandatory parameters:

  • array: The object array whose index is to be returned.
  • index: The particular index of the given array. The element at ‘index’ in the given array is returned.

Return Value: This method returns the element of the array as int.

Exceptions: This method throws following exceptions:

  • NullPointerException – when the array is null.
  • IllegalArgumentException – when the given object array is not an Array.
  • ArrayIndexOutOfBoundsException – if the given index is not in the range of the size of the array.

Note: Typecast isn’t necessary as the return type is int.

Below programs illustrate the get() method of Array class:

Program 1:




import java.lang.reflect.Array;
  
public class GfG {
    // main method
    public static void main(String[] args)
    {
        // Declaring and defining an int array
        int a[] = { 1, 2, 3, 4, 5 };
  
        // Traversing the array
        for (int i = 0; i < 5; i++) {
  
            // Array.getInt method
            int x = Array.getInt(a, i);
  
            // Printing the values
            System.out.print(x + " ");
        }
    }
}


Output:

1 2 3 4 5

Program 2: To demonstrate ArrayIndexOutOfBoundsException




import java.lang.reflect.Array;
  
public class GfG {
    // main method
    public static void main(String[] args)
    {
        // Declaring and defining an int array
        int a[] = { 1, 2, 3, 4, 5 };
  
        try {
            // invalid index
            int x = Array.getInt(a, 6);
  
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}


Output:

Exception : java.lang.ArrayIndexOutOfBoundsException

Program 3: To demonstrate NullPointerException




import java.lang.reflect.Array;
  
public class GfG {
    // main method
    public static void main(String[] args)
    {
        // Declaring an int array
        int a[];
  
        // array to null
        a = null;
  
        try {
            // null Object array
            int x = Array.getInt(a, 6);
  
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}


Output:

Exception : java.lang.NullPointerException

Program 4: To demonstrate IllegalArgumentException




import java.lang.reflect.Array;
  
public class GfG {
    // main method
    public static void main(String[] args)
    {
        // int (Not an array)
        int y = 0;
  
        try {
            // illegalArgument
            int x = Array.getInt(y, 6);
  
            System.out.println(x);
        }
        catch (Exception e) {
            // Throws exception
            System.out.println("Exception : " + e);
        }
    }
}


Output:

Exception : java.lang.IllegalArgumentException: Argument is not an array
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11876 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS