会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
aaacarrot
博客园
首页
新随笔
联系
管理
2023年3月11日
【BigDecimal】non-terminating decimal expansion; no exact representable decimal result.
摘要: 问题,如题。 意思是,使用 BigDecimal 除法,产生了无限循环小数,产生了bug。 解决方法,很简单 a.divide(b, 2, BigDecimal.ROUND_HALF_UP); 意思就是 a / b, 保留两位小数,然后采用的是4舍5入的方式。 嗯,然后,第三个参数,有很多,点方法进
阅读全文
posted @ 2023-03-11 22:21 aaacarrot
阅读(82)
评论(0)
推荐(0)
编辑