java.lang.reflect.Array.getDouble()是Java中Array類的內置方法,用於將指定數組中給定索引處的元素作為Double返回。
句法:
Array.getDouble(Object []array, int index)
參數:此方法接受兩個強製性參數:
- array: 要返回其索引的對象數組。
- index: 給定數組的特定索引。返回給定數組中“索引”處的元素。
返回值:此方法以字節為單位返回數組的元素。
異常:此方法引發以下異常:
- NullPointerException –當數組為null時。
- IllegalArgumentException–當給定的對象數組不是數組時。
- ArrayIndexOutOfBoundsException–如果給定的索引不在數組的大小範圍內。
注意:不必進行類型轉換,因為返回類型為double。
以下示例程序旨在說明Array類的getDouble()方法。
程序1:
// Java code to demonstrate getDouble() method of Array class
import java.lang.reflect.Array;
public class GfG {
// main method
public static void main(String[] args)
{
// Declaring and defining a double array
double a[] = { 1.0, 2.0, 3.0 };
// Traversing the array
for (int i = 0; i < 3; i++) {
// Array.getDouble() method
double x = Array.getDouble(a, i);
// Printing the values
System.out.print(x + " ");
}
}
}
輸出:
1.0 2.0 3.0
程序2:
// Java code to demonstrate getDouble() method of Array class
import java.lang.reflect.Array;
public class GfG {
// main method
public static void main(String[] args)
{
// Declaring and defining a double array
double a[] = { 1.0, 2.0, 3.0 };
try {
double x = Array.getDouble(a, 4);
}
catch (Exception e) {
System.out.println("Exception : " + e);
}
}
}
輸出:
Exception : java.lang.ArrayIndexOutOfBoundsException
程序3:
// Java code to demonstrate getDouble() method of Array class
import java.lang.reflect.Array;
public class GfG {
// main method
public static void main(String[] args)
{
// Declaring and defining a double array as null
double a[] = null;
try {
double x = Array.getDouble(a, 4);
}
catch (Exception e) {
System.out.println("Exception : " + e);
}
}
}
輸出:
Exception : java.lang.NullPointerException
程序4:
// Java code to demonstrate getDouble() method of Array class
import java.lang.reflect.Array;
public class GfG {
// main method
public static void main(String[] args)
{
// Declaring and defining a double variable
double a = 1.0f;
try {
double x = Array.getDouble(a, 4);
}
catch (Exception e) {
System.out.println("Exception : " + e);
}
}
}
輸出:
Exception : java.lang.IllegalArgumentException: Argument is not an array
程序5:
// Java code to demonstrate getDouble() method of Array class
import java.lang.reflect.Array;
public class GfG {
// main method
public static void main(String[] args)
{
// Declaring and defining a String array
String s[] = { "Geeks", "for", "Geeks" };
try {
double x = Array.getDouble(s, 4);
}
catch (Exception e) {
System.out.println("Exception : " + e);
}
}
}
輸出:
Exception : java.lang.IllegalArgumentException: Argument is not an array
相關用法
- Java Field getDouble()用法及代碼示例
- Java ByteBuffer getDouble()用法及代碼示例
- Java Array set()用法及代碼示例
- Java Array get()用法及代碼示例
- Java Array getBoolean()用法及代碼示例
- Java Array getChar()用法及代碼示例
- Java Array setInt()用法及代碼示例
- Java Array getShort()用法及代碼示例
- Java Array getByte()用法及代碼示例
- Java Array getFloat()用法及代碼示例
- Java CharBuffer array()用法及代碼示例
- Java Array getInt()用法及代碼示例
- Java Array getLong()用法及代碼示例
- Java Array setShort()用法及代碼示例
- Java Array setDouble()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Array getDouble() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。