当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。