为什么HALF_UP有时会以双倍的形式向下舍入?

时间:2015-06-04 17:54:08

标签: java rounding

以下代码:

double doubleValue = 1713.6;
float floatValue = 1713.6f;
String fs = "%-9s : %-7s %-7s\n";
System.out.printf( fs, "", "double", "float" );

DecimalFormat format = new DecimalFormat("#0");
System.out.printf( fs, "toString", String.valueOf( doubleValue ), String.valueOf( floatValue ) );

format.setRoundingMode( RoundingMode.DOWN );
System.out.printf( fs, "DOWN", format.format( doubleValue ), format.format( floatValue ) );

format.setRoundingMode( RoundingMode.HALF_DOWN );
System.out.printf( fs, "HALF_DOWN", format.format( doubleValue ), format.format( floatValue ) );

format.setRoundingMode( RoundingMode.HALF_UP );
System.out.printf( fs, "HALF_UP", format.format( doubleValue ), format.format( floatValue ) );

format.setRoundingMode( RoundingMode.UP );
System.out.printf( fs, "UP", format.format( doubleValue ), format.format( floatValue ) );

生成结果(live code):

          : double  float  
toString  : 1713.6  1713.6 
DOWN      : 1713    1713   
HALF_DOWN : 1714    1714   
HALF_UP   : 1713    1714   <--- notice this line
UP        : 1714    1714   

我知道某些数字不能完全表示为浮点数。 1713.6的实际浮点表示形式为1713.5999755859375(参见this page)。

但是为什么HALF_UP在这种情况下将向下

使用Java 1.8u25

2 个答案:

答案 0 :(得分:14)

Java 8中有关于NumberFormat和RoundingMod HALF_UP的错误,请参阅8039915。这是用8u40(Release Notes)确定的。

答案 1 :(得分:1)

Ideone正在使用sun-jdk-8u25,这种行为正在出现。

在Java 1.7上,我得到了HALF_UP:1714 1714,这是对的。

枚举RoundingMode - 指定能够丢弃精度的数值运算的舍入行为。

See Oracle javadoc: Result of rounding input to one digit with the given rounding mode[Rounding Mode Table]