Java 中的数组 getInt()方法

原文:https://www.geeksforgeeks.org/array-getint-method-in-java/

java . lang . reflect . Array . GetInt()是 Java 中的一个内置方法,用于将指定数组中给定索引处的元素作为 int 返回。

语法

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

参数:该方法接受两个强制参数:

  • 数组:要返回其索引的对象数组。
  • 索引:给定数组的特定索引。返回给定数组中“index”处的元素。

返回值:这个方法返回数组的元素为 int。

异常:该方法抛出以下异常:

  • 空指针异常–当数组为空时。
  • IllegalArgumentException–当给定的对象数组不是数组时。
  • arrayindexoofboundsexception–如果给定的索引不在数组的大小范围内。

注意:类型转换不是必需的,因为返回类型是 int。

下面的程序说明了数组类的 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.getInt method
            int x = Array.getInt(a, i);

            // Printing the values
            System.out.print(x + " ");
        }
    }
}

Output:

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
            int x = Array.getInt(a, 6);

            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}

Output:

Exception : java.lang.ArrayIndexOutOfBoundsException

程序 3: 演示空指针异常

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
            int x = Array.getInt(a, 6);

            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}

Output:

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
            int x = Array.getInt(y, 6);

            System.out.println(x);
        }
        catch (Exception e) {
            // Throws exception
            System.out.println("Exception : " + e);
        }
    }
}

Output:

Exception : java.lang.IllegalArgumentException: Argument is not an array