當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Array getChar()用法及代碼示例


java.lang.reflect.Array.getChar()是Java中的內置方法,用於將指定數組中給定索引處的元素作為char返回。

句法

Array.getChar(Object []array,int index)

參數:


  • array : 要返回其索引的對象數組。
  • index : 給定數組的特定索引。返回給定數組中“索引”處的元素。

返回類型:此方法將數組的元素作為char返回。

注意:不必進行類型轉換,因為返回類型為char

異常:此方法引發以下異常

  • NullPointerException –當數組為null時。
  • IllegalArgumentException–當給定的對象數組不是數組時。
  • ArrayIndexOutOfBoundsException–如果給定的索引不在數組的大小範圍內。

以下示例程序旨在說明數組類的getChar()方法:

程序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); 
       } 
          
    } 
}
輸出:
GfG

程序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); 
        } 
    } 
}
輸出:
Exception : java.lang.ArrayIndexOutOfBoundsException

程序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); 
        } 
    } 
}
輸出:
Exception : java.lang.NullPointerException

程序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); 
        } 
    } 
}
輸出:
Exception : java.lang.IllegalArgumentException: Argument is not an array


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Array getChar() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。