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


Java Integer floatValue()用法及代碼示例


java.lang包的Integer類的java.lang.Integer.floatValue()方法用於在擴展原始轉換後將給定Integer的值轉換為float類型。

用法:

public float floatValue()

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


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

以下程序說明了java.lang.Integer.floatValue()方法:
示例1:

// Java program to demonstrate working 
// of java.lang.Integer.floatValue() method 
import java.lang.Integer; 
  
class Gfg { 
  
    // Driver code 
    public static void main(String args[]) 
    { 
        Integer a = new Integer(28); 
  
        // Convert Integer number to float value 
        float b = a.floatValue(); 
  
        System.out.println(b); 
    } 
}
輸出:
28.0

示例2:

// Java program to demonstrate working 
// of java.lang.Integer.floatValue() method 
import java.lang.Integer; 
  
class Gfg { 
    // Driver code 
    public static void main(String args[]) 
    { 
        Integer a = new Integer(20); 
  
        // Convert Integer number to float value 
        float b = a.floatValue(); 
  
        System.out.println(b); 
    } 
}
輸出:
20.0


相關用法


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