Java中BigDecimal算出来的结果不对?

这段代码为什么输出的872?

public static void main(String[] args) {
        BigDecimal currentInventoryNumber = BigDecimal.valueOf(872.000);
        BigDecimal convertedNumber = BigDecimal.valueOf(0.200);
        System.out.println(currentInventoryNumber.subtract(convertedNumber, new MathContext(3)));
    }
阅读 1.2k
2 个回答

第二个参数new MathContext(3)表示精度为小数点后三位。
因为currentInventoryNumber的值为872.000,而convertedNumber的值为0.200,所以它们的差值为871.800。使用了MathContext(3)会将结果四舍五入到小数点后三位,也就是872.000。
image.png
image.png

你可以不指定MathContext,让BigDecimal用默认的MathContext

public static void main(String[] args) {
    BigDecimal currentInventoryNumber = BigDecimal.valueOf(872.000);
    BigDecimal convertedNumber = BigDecimal.valueOf(0.200);
    System.out.println(currentInventoryNumber.subtract(convertedNumber));
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题