當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Array getFloat()用法及代碼示例


java.lang.reflect.Array.getFloat()是Java中Array類的內置方法,用於從指定Array以Float形式返回給定索引處的元素。

句法

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

參數:此方法接受兩個強製性參數:


  • array: 要返回其索引的對象數組。
  • index: 給定數組的特定索引。返回給定數組中“索引”處的元素。

返回值:此方法以字節為單位返回數組的元素。

異常:此方法引發以下異常:

  • NullPointerException –當數組為null時。
  • IllegalArgumentException–當給定的對象數組不是數組時。
  • ArrayIndexOutOfBoundsException–如果給定的索引不在數組的大小範圍內。

注意:不必進行類型轉換,因為返回類型為float。

以下示例程序旨在說明Array類的getFloat()方法。

程序1

// Java code to demonstrate getFloat() method of Array class 
import java.lang.reflect.Array; 
public class GfG { 
    // main method 
    public static void main(String[] args) 
    { 
  
        // Declaring and defining a float array 
        float a[] = { 1.0f, 2.0f, 3.0f }; 
  
        // Traversing the array 
        for (int i = 0; i < 3; i++) { 
  
            // Array.getBoolean() method 
  
            float x = Array.getFloat(a, i); 
            // Printing the values 
            System.out.print(x + " "); 
        } 
    } 
}

輸出量

1.0 2.0 3.0 

程序2

// Java code to demonstrate getFloat() method of Array class 
import java.lang.reflect.Array; 
public class GfG { 
    // main method 
    public static void main(String[] args) 
    { 
  
        // Declaring and defining a float array 
        float a[] = { 1.0f, 2.0f, 3.0f }; 
  
        try { 
            float x = Array.getFloat(a, 4); 
        } 
        catch (Exception e) { 
            System.out.println("Exception : " + e); 
        } 
    } 
}

輸出量

Exception : java.lang.ArrayIndexOutOfBoundsException

程序3

// Java code to demonstrate getFloat() method of Array class 
import java.lang.reflect.Array; 
public class GfG { 
    // main method 
    public static void main(String[] args) 
    { 
  
        // Declaring and defining a float array as null 
        float a[] = null; 
  
        try { 
            float x = Array.getFloat(a, 4); 
        } 
        catch (Exception e) { 
            System.out.println("Exception : " + e); 
        } 
    } 
}

輸出量

Exception : java.lang.NullPointerException

程序4

// Java code to demonstrate getFloat() method of Array class 
import java.lang.reflect.Array; 
public class GfG { 
    // main method 
    public static void main(String[] args) 
    { 
  
        // Declaring and defining a float variable 
        float a = 1.0f; 
  
        try { 
            float x = Array.getFloat(a, 4); 
        } 
        catch (Exception e) { 
            System.out.println("Exception : " + e); 
        } 
    } 
}

輸出量

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

程序5

// Java code to demonstrate getFloat() 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 { 
            float x = Array.getFloat(s, 4); 
        } 
        catch (Exception e) { 
            System.out.println("Exception : " + e); 
        } 
    } 
}

輸出量

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


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Array getFloat() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。