本文主要是介绍Non-terminating decimal expansion,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
BigDecimal除法运算报错,错误如下:
Non-terminating decimal expansion; no exact representable decimal result
原因是:
BigDecimal divide(BigDecimal divisor, int scale, int roundingMode)
if divisor is zero, roundingMode==ROUND_UNNECESSARY and the specified scale is insufficient to represent the result of the division exactly
所以应该指定scale和roundingMode,保证对于无限小数有足够的范围来表示结果。
这篇关于Non-terminating decimal expansion的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!