java.lang.reflect.Array.setShort() es un método incorporado en Java y se usa para establecer un valor corto específico en un índice específico de una array de objetos determinada.
Sintaxis :
Array.setShort(Object []array,int index, short value)
Parámetros: Este método toma 3 parámetros:
- array: Esta es una array de tipo Objeto que se va a actualizar.
- índice: Este es el índice de la array que se va a actualizar.
- valor: este es el valor corto que se establecerá en el índice dado de la array dada .
Excepción: 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.
A continuación se muestra la implementación del método Array.setShort():
Programa 1:
// Java code to demonstrate // setShort() method of Array class import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining Short array short b[] = { 1 , 2 , 3 , 4 }; System.out.print( "Befor Set : " ); // printing the array for ( short x : b){ System.out.print(x + " " ); } short value = 10 ; // set method of class Array Array.setShort(b, 1 , value); System.out.print( "\nAfter Set : " ); // printing array for ( short x : b){ System.out.print(x + " " ); } } } |
Producción:
Befor Set : 1 2 3 4 After Set : 1 10 3 4
Programa 2: para demostrar java.lang.NullPointerException
// Java code to demonstrate // setShort() method of Array class import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining Short array to null short b[] = null ; try { short s = 10 ; Array.setShort(b, 5 ,s); } catch (Exception e){ System.out.println( "Exception : " + e); } } } |
Producción:
Exception : java.lang.NullPointerException
Programa 3: Para demostrar java.lang.ArrayIndexOutOfBoundsException
// Java code to demonstrate // setShort() method of Array class import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining Short array short b[] = { 1 , 2 , 3 , 4 }; try { short s = 10 ; Array.setShort(b, 5 ,s); } catch (Exception e){ System.out.println( "Exception : " + e); } } } |
Producción:
Exception : java.lang.ArrayIndexOutOfBoundsException
Programa 4: Para demostrar java.lang.IllegalArgumentException
// Java code to demonstrate // setShort() method of Array class import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining Short variable short b = 1 ; try { short s = 10 ; Array.setShort(b, 5 ,s); } catch (Exception e){ System.out.println( "Exception : " + e); } } } |
Producción:
Exception : java.lang.IllegalArgumentException: Argument is not an array