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
相关用法
- Java Float floatValue()用法及代码示例
- Java LongAdder floatValue()用法及代码示例
- Java DoubleAccumulator floatValue()用法及代码示例
- Java AtomicLong floatValue()用法及代码示例
- Java Byte floatValue()用法及代码示例
- Java AtomicInteger floatValue()用法及代码示例
- Java Number.floatValue()用法及代码示例
- Java DoubleAdder floatValue()用法及代码示例
- Java BigDecimal floatValue()用法及代码示例
- Java LongAccumulator floatValue()用法及代码示例
- Java Doubles.indexOf(double[] array, double target)用法及代码示例
- Java Doubles.indexOf(double[] array, double[] target)用法及代码示例
- Java Double longValue()用法及代码示例
- Java Double isNaN()用法及代码示例
- Java Double doubleToRawLongBits()用法及代码示例
注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Double floatValue() in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。