将 Ruby BigDecimal 数字四舍五入到最接近的 0.05 的最佳方法是什么?

发布于 2024-10-13 05:39:54 字数 213 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文