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


Java Number.floatValue()用法及代碼示例


java.lang.Number.floatValue()是java中的一個內置方法,該方法返回轉換為float數據類型的指定數字的值。這可能涉及舍入或截斷。

用法:

public abstract float floatValue()

參數:此方法不接受任何參數。


返回值:轉換為float類型後,此方法返回此對象表示的數值。

以下示例程序旨在說明Number.floatValue()方法:

示例1:

// Below program demonstrate the 
// Number.floatValue() method 
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // number with integer datatype 
        Integer x = new Integer(1785423456); 
        // print the value as float 
        System.out.println(x.floatValue()); 
  
        // number with double datatype 
        Double y = new Double(97854876); 
        // print the value as float 
        System.out.println(y.floatValue()); 
    } 
}
輸出:
1.78542349E9
9.785488E7

示例2:

// Below program demonstrate the 
// Number.floatValue() method 
  
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // number with integer datatype 
        Integer x = new Integer(456); 
        // print the value as float 
        System.out.println(x.floatValue()); 
  
        // number with double datatype 
        Double y = new Double(96); 
        // print the value as float 
        System.out.println(y.floatValue()); 
    } 
}
輸出:
456.0
96.0


相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 Number.floatValue() method in java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。