1.BigDecimal传入double类型参数精度丢失:
例子:
(0.47+0.36)/2 =0.42 != (0.46999+0.35999)/2=0.414995(使用bigdecial保留两位小数为0.41)
解决方案:
BigDecimal溢出:传入String类型参数
两个构造方法:a.BigDecimal(double val) Translates a double into a BigDecimal.
注意:Note: the results of this constructor can be somewhat unpredictable.
b.BigDecimal(String val) Translates the String repre sentation of a BigDecimal into a BigDecimal.
2. double类型运算精度丢失
例子( 0.48+0.57)/2=0.53 != 1.0499999999999998/2=0.5249999999999999=0.52
解决方案:
使用BigDecimal进行运算
转载于:https://blog.51cto.com/leidai/1912459