Java.math.BigDecimal.floatValue()方法



描述

Java.math.BigDecimal.floatValue()将此BigDecimal转换为float。如果此BigDecimal具有太大作为float表示的幅度,则将其转换为Float.NEGATIVE_INFINITY或Float.POSITIVE_INFINITY(视具体情况而定)。当返回值有限时,转换也会丢失有关BigDecimal值精度的信息。

声明

以下是Java.math.BigDecimal.floatValue()方法的声明。

public Float floatValue()

由以下指定的

Number类中的floatValue。

参数

返回值

此方法返回BigDecimal对象的float值。

异常

示例

以下示例展示了math.BigDecimal.floatValue()方法的用法。

package com.tutorialspoint;

import java.math.*;

public class BigDecimalDemo {

   public static void main(String[] args) {

      // create a BigDecimal object
      BigDecimal bg;

      // create a Float object
      Float f;

      bg = new BigDecimal("1234.123486");

      // assign the converted value of bg to f
      f = bg.floatValue();

      String str = "Float value of " + bg + " is " + f;

      // print f value
      System.out.println( str );
   }
}

让我们编译并运行上述程序,这将生成以下结果−

Float value of 1234.123486 is 1234.1235
java_math_bigdecimal.htm
广告