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


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


java.lang.reflect.Array.getLong()是Java中的內置方法,用於從指定Array中以long形式返回給定索引處的元素。

句法

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

參數:此方法接受兩個強製性參數:


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

返回值:此方法返回數組的元素。

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

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

以下示例程序旨在說明Array類的get()方法:

示例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 + " "); 
        } 
    } 
}
輸出:
1 2 3 4 5

示例2:演示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); 
        } 
    } 
}
輸出:
Exception : java.lang.ArrayIndexOutOfBoundsException

示例3:演示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); 
        } 
    } 
}
輸出:
Exception : java.lang.NullPointerException

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


相關用法


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