BigDecimal 的高级舍入选项
我正在编写一个程序,必须对非常大且精确的数字进行舍入(可能比 double 可以处理的有效数字要多得多),并且正在使用 BigDecimals。
有没有办法根据位置而不是有效数字进行 BigDecimal 舍入?
也就是说,我需要 0.5 舍入为 1,需要 0.4 舍入为 0,但由于它们的有效数字数量相同,BigDecimal 拒绝对其中任何一个进行舍入。
I am writing a program that has to round very large and precise numbers (possibly many more significant digits than even double could handle), and am using BigDecimals.
Is there a way to make BigDecimal round based on place and not significant figures?
That is, I need 0.5 to round to 1 and 0.4 to round to 0, but since they are the same number of significant figures, BigDecimal refuses to round either of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑你想要
setScale
:I suspect you want
setScale
: