java.lang.reflect.Array.getByte()是Java中的內置方法,用於將指定數組中給定索引處的元素作為字節返回。
句法:
Array.getByte(Object []array, int index)
參數:此方法接受兩個強製性參數:
- array: 要返回其索引的對象數組。
- index: 給定數組的特定索引。返回給定數組中“索引”處的元素。
返回值:此方法以字節為單位返回數組的元素。
異常:此方法引發以下異常:
- NullPointerException –當數組為null時。
- IllegalArgumentException–當給定的對象數組不是數組時。
- ArrayIndexOutOfBoundsException–如果給定的索引不在數組的大小範圍內。
以下示例程序旨在說明數組的get()方法:
示例1:
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 + " ");
}
}
}
輸出:
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.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。
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。
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
相關用法
- Java Field getByte()用法及代碼示例
- Java Java.lang.String.getByte()用法及代碼示例
- Java Array get()用法及代碼示例
- Java Array set()用法及代碼示例
- Java Array setChar()用法及代碼示例
- Java CharBuffer array()用法及代碼示例
- Java Array getInt()用法及代碼示例
- Java Array getLong()用法及代碼示例
- Java Array setLong()用法及代碼示例
- Java Array setDouble()用法及代碼示例
- Java Array setInt()用法及代碼示例
- Java Array getBoolean()用法及代碼示例
- Java Array getChar()用法及代碼示例
- Java Array setByte()用法及代碼示例
- Java Array setShort()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Array getByte() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。