📜  Java中的数组getByte()方法

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

Java中的数组getByte()方法

Java.lang.reflect.Array.getByte()是Java中的一个内置方法,用于从指定 Array 中以字节形式返回给定索引处的元素。
语法

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

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

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

返回值:此方法以字节形式返回数组元素。
异常:此方法引发以下异常:

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

下面的程序说明了 Array 的 get() 方法:
方案一:

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


Java
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.getByte method
            byte x = Array.getByte(a, 6);
 
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}


Java
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.getByte method
            byte x = Array.getByte(a, 6);
 
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}


Java
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.getByte method
            byte x = Array.getByte(y, 6);
 
            System.out.println(x);
        }
        catch (Exception e) {
            // Throws exception
            System.out.println("Exception : " + e);
        }
    }
}


输出:
1 2 3 4 5

程序 2:演示 ArrayIndexOutOfBoundsException。

Java

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.getByte method
            byte x = Array.getByte(a, 6);
 
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}
输出:
Exception : java.lang.ArrayIndexOutOfBoundsException

程序3:演示NullPointerException。

Java

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.getByte method
            byte x = Array.getByte(a, 6);
 
            System.out.println(x);
        }
        catch (Exception e) {
            // throws Exception
            System.out.println("Exception : " + e);
        }
    }
}
输出:
Exception : java.lang.NullPointerException

程序 4:演示 IllegalArgumentException。

Java

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.getByte method
            byte x = Array.getByte(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