为什么Java在浮点计算后会显示额外的值?

时间:2011-08-05 06:37:00

标签: java math

我有一段非常简单的代码,我认为从用户的角度来看错误的结果。

package com.test.sample;
public class Test {

    public static void main(String[] args) {
        float c,d;

        c = (float) 12.47;
        d = (float) 12.44;
        d = c - d;

        System.out.println("Hello the calculated value of a=" + d);
    }

}

输出是 Hello the calculated value of a=0.030000687

但我希望a=0.030000000这是一个完美的价值。

1 个答案:

答案 0 :(得分:6)

Floating point arithmetic,开发人员应该知道的。

JVM实现IEEE-754 1985 floating point standard并且它有accuracy problem(因为浮点数不能精确地表示所有实数)。

如果您寻求准确性,请改用java.math.BigDecimal对象。


更新:这是我举例并使用BigDecimal来实现预期结果的方式:

import java.math.BigDecimal;

/**
 * @author The Elite Gentleman
 *
 */
public class BigDecimalTest {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        BigDecimal a = new BigDecimal(Float.toString(12.47f));
        BigDecimal b = new BigDecimal(Float.toString(12.44f));
        BigDecimal c = a.subtract(b);
        System.out.println(c);
    }
}