The java.lang.reflect.Array.getLong() is an inbuilt method in Java and is used to return an element at the given index from a specified Array as a long.
Syntax:
Array.getLong(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 long.
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.
Below programs illustrate the get() method of Array class:
Program 1:
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args)
{
int a[] = { 1 , 2 , 3 , 4 , 5 };
for ( int i = 0 ; i < 5 ; i++) {
long x = Array.getLong(a, i);
System.out.print(x + " " );
}
}
}
|
Program 2: To demonstrate ArrayIndexOutOfBoundsException.
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args)
{
int a[] = { 1 , 2 , 3 , 4 , 5 };
try {
long x = Array.getLong(a, 6 );
System.out.println(x);
}
catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.ArrayIndexOutOfBoundsException
Program 3: To demonstrate NullPointerException.
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args)
{
int a[];
a = null ;
try {
long x = Array.getLong(a, 6 );
System.out.println(x);
}
catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.NullPointerException
Program 4: To demonstrate IllegalArgumentException.
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args)
{
int y = 0 ;
try {
long x = Array.getLong(y, 6 );
System.out.println(x);
}
catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.IllegalArgumentException: Argument is not an array
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 Jul, 2020
Like Article
Save Article