java.lang.reflect.Array.getLong() es un método incorporado en Java y se usa para devolver un elemento en el índice dado de un Array especificado como un largo.
Sintaxis :
Array.getLong(Object []array, int index)
Parámetros: este método acepta dos parámetros obligatorios:
- array: la array de objetos cuyo índice se va a devolver.
- índice: El índice particular de la array dada. Se devuelve el elemento en ‘índice’ en la array dada.
Valor de retorno: este método devuelve el elemento de la array siempre que sea largo.
Excepciones: este método arroja las siguientes excepciones:
- NullPointerException : cuando la array es nula.
- IllegalArgumentException : cuando la array de objetos dada no es una array.
- ArrayIndexOutOfBoundsException : si el índice dado no está en el rango del tamaño de la array.
Los siguientes programas ilustran el método get() de la clase Array:
Programa 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.getLong method long x = Array.getLong(a, i); // Printing the values System.out.print(x + " "); } } }
Producción:
1 2 3 4 5
Programa 2: Para demostrar 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 // Array.getLong method long x = Array.getLong(a, 6); System.out.println(x); } catch (Exception e) { // throws Exception System.out.println("Exception : " + e); } } }
Producción:
Exception : java.lang.ArrayIndexOutOfBoundsException
Programa 3: Para demostrar 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 // Array.getLong method long x = Array.getLong(a, 6); System.out.println(x); } catch (Exception e) { // throws Exception System.out.println("Exception : " + e); } } }
Producción:
Exception : java.lang.NullPointerException
Programa 4: Para demostrar 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 // Array.getLong method long x = Array.getLong(y, 6); System.out.println(x); } catch (Exception e) { // Throws exception System.out.println("Exception : " + e); } } }
Producción:
Exception : java.lang.IllegalArgumentException: Argument is not an array