这段代码为什么输出的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)));
}
第二个参数new MathContext(3)表示精度为小数点后三位。


因为currentInventoryNumber的值为872.000,而convertedNumber的值为0.200,所以它们的差值为871.800。使用了MathContext(3)会将结果四舍五入到小数点后三位,也就是872.000。