java.lang.reflect.Array.getChar() es un método incorporado en Java y se usa para devolver el elemento presente en un índice dado del Array especificado como un carácter.
Sintaxis
Array.getChar(Object []array,int index)
Parámetros:
- 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.
Tipo de devolución: este método devuelve el elemento de la array como char.
Nota: Typecast no es necesario ya que el tipo de retorno es char
Excepción: este método arroja la siguiente excepción
- 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 getChar() de Array Class:
Programa 1 :
// Java code to demonstrate getChar() method of Array class import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining an byte array char a[] = {'G','f','G'}; // Traversing the array for(int i = 0;i<3;i++){ // Array.getChar() method char x = Array.getChar(a, i); // Printing the values System.out.print(x); } } }
Producción:
GfG
Programa 2 :
// Java code to demonstrate getChar() method in Array import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining an char array char a[] = {'G','f','G'}; try { // invalid index char x = Array.getChar(a, 6); System.out.println(x); } catch (Exception e) { // throws Exception System.out.println("Exception : " + e); } } }
Producción:
Exception : java.lang.ArrayIndexOutOfBoundsException
Programa 3 :
// Java code to demonstrate getChar() method in Array import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining an char array to null char a[] = null; try { // null Object array char x = Array.getChar(a, 6); System.out.println(x); } catch (Exception e) { // throws Exception System.out.println("Exception : " + e); } } }
Producción:
Exception : java.lang.NullPointerException
Programa 4 :
// Java code to demonstrate getChar() method in Array import java.lang.reflect.Array; public class GfG { // main method public static void main(String[] args) { // Declaring and defining an char variable char a = 'a'; try { //iilegal Argument char x = Array.getChar(a, 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