将 Ruby BigDecimal 数字四舍五入到最接近的 0.05 的最佳方法是什么?
Ruby 的 BigDecimal #round 方法将数字四舍五入到最接近的整数(并令人沮丧地将其作为固定数返回)。是否有内置方法允许四舍五入到最接近的 0.05?我找不到一个。
我管理过的最好的是
def round05(number)
(BigDecimal.new (number * 20).round.to_s) /20
end
Ruby's BigDecimal #round method rounds numbers off to the nearest integer (and returns it as a fixnum frustratingly). Is there a built in method to allow rounding to the nearest 0.05? I can't find one.
The best I have managed is
def round05(number)
(BigDecimal.new (number * 20).round.to_s) /20
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论