欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Non-terminating decimal expansion; no exact representable decimal result

程序员文章站 2022-06-09 15:53:46
...
异常信息:Non-terminating decimal expansion; no exact representable decimal result

通过BigDecimal的divide方法进行除法时当不整除,出现无限循环小数时,就会抛异常:java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result.
  解决的办法就是给divide方法设置精确的小数点,如:divide(xxxxx,2)。