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


Java Double floatValue()用法及代码示例


Double类的floatValue()方法是一种内置方法,用于在类型转换后将调用对象指定的值作为float返回。

用法

DoubleObject.floatValue()

参数:它不带任何参数。


返回类型:它返回一个浮点值,即DoubleObject的类型转换值。

下面是上述方法的实现。

代码1:

// Java Code to implement  
// floatValue() method of Double class 
class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating a Double object 
        Double d = new Double(23); 
  
        // floatValue() method of Double class 
        // typecast the value 
        float output = d.floatValue(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}

输出

23.0

代码2:

// Java Code to implement  
// floatValue() method  
// of Double class 
class GFG { 
  
    public static void main(String[] args) 
    { 
        // creating a Double object 
        Double d = new Double(-1023.15); 
  
        // floatValue() method of Double class 
        // typecast the value 
        float output = d.floatValue(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}

输出

-1023.15


相关用法


注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Double floatValue() in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。