📜  Java中的数组getShort()方法

📅  最后修改于: 2022-05-13 01:55:01.211000             🧑  作者: Mango

Java中的数组getShort()方法

Java.lang.reflect.Array.getShort()是Java中 Array 类的内置方法,用于将指定 Array 中给定索引处存在的元素作为 short 返回。

语法

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

参数:

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

返回类型:此方法将数组元素返回为short。

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

异常:此方法引发以下异常:

  • NullPointerException – 当数组为空时。
  • IllegalArgumentException – 当给定的对象数组不是数组时。
  • ArrayIndexOutOfBoundsException – 如果给定的索引不在数组大小的范围内。

下面的程序说明了 Array 类的 getShort() 方法:

程序 1

// Java code to demonstrate getShort() method of Array class
import java.lang.reflect.Array;
public class GfG  {
    // main method
    public static void main(String[] args) {
           
       // Declaring and defining a short array
       short a[] = {1,2,3,4,5};
          
       // Traversing the array
       for(int i = 0;i<5;i++){
              
           // Array.getShort() method
              
           short x = Array.getShort(a, i);
           // Printing the values
           System.out.print(x + " ");
       }
           
    }
}
输出:
1 2 3 4 5

程序2 :演示Java.lang.ArrayIndexOutOfBoundsException。

// Java code to demonstrate getShort() method in Array
import java.lang.reflect.Array;
    
public class GfG {
    
    // main method
    public static void main(String[] args) {
        // Declaring and defining a short array
        short a[] = {1, 2, 3, 4, 5};
    
        try {
            // invalid index
            short x =  Array.getShort(a, 6);
            System.out.println(x);
        } catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}
输出:
Exception : java.lang.ArrayIndexOutOfBoundsException

程序3 :演示Java.lang.NullPointerException。

// Java code to demonstrate getShort() method in Array
import java.lang.reflect.Array;
    
public class GfG {
    
    // main method
    public static void main(String[] args) {
        // Declaring and defining a short array to null
        short a[] = null;
    
        try {
            // null Object Array
            short x =  Array.getShort(a, 6);
            System.out.println(x);
        } catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}
输出:
Exception : java.lang.NullPointerException

程序4 :演示Java.lang.IllegalArgumentException。

// Java code to demonstrate getShort() method in Array
import java.lang.reflect.Array;
    
public class GfG {
    
    // main method
    public static void main(String[] args) {
        // Declaring and defining a short variable
        short a = 10;
    
        try {
            // illegalArgument
            short x =  Array.getShort(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