英文:
Rounding of BigDecimal
问题
我想对 Bigdecimal 进行四舍五入,例如我的 0.1,它应该四舍五入为 1。
我尝试过 Round_UP,所有的四舍五入函数。
请帮我解决。
英文:
I want to do rounding of Bigdecimal e.g my 0.1 then it should round as 1.
I tried with Round_UP, all Rounding Function
Please help me out
答案1
得分: 1
我猜你使用了 round
方法。相反地,你应该将精度改为 0
。
BigDecimal bd = BigDecimal.valueOf(0.1);
BigDecimal rounded = bd.setScale(0, RoundingMode.UP); // 1
英文:
I suppose you used the round
method. Instead, you should change the scale to 0
.
BigDecimal bd = BigDecimal.valueOf(0.1);
BigDecimal rounded = bd.setScale(0, RoundingMode.UP); // 1
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论