The java.lang.reflect.Array.getBoolean() returns the given index from the specified Array as a short.
Syntax:
Array.getBoolean(Object []array,int index)
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 Type: This method returns the element of the array as boolean.
Note: Typecast isn’t necessary as the return type is boolean.
Exception: This method throws following exception
- 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 getBoolean() method of Array class:
Program 1:
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args) {
boolean a[] = { true , true , false };
for ( int i = 0 ;i< 3 ;i++){
boolean x = Array.getBoolean(a, i);
System.out.print(x + " " );
}
}
}
|
Program 2:
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args) {
boolean a[] = { true , true , false };
try {
boolean x = Array.getBoolean(a, 6 );
System.out.println(x);
} catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.ArrayIndexOutOfBoundsException
Program 3:
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args) {
boolean a[] = null ;
try {
boolean x = Array.getBoolean(a, 6 );
System.out.println(x);
} catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.NullPointerException
Program 4:
import java.lang.reflect.Array;
public class GfG {
public static void main(String[] args) {
boolean a = true ;
try {
boolean x = Array.getBoolean(a, 6 );
System.out.println(x);
} catch (Exception e) {
System.out.println( "Exception : " + e);
}
}
}
|
Output:
Exception : java.lang.IllegalArgumentException: Argument is not an array