gpt4 book ai didi

ruby-on-rails - 什么样的数据类型可以四舍五入?

转载 作者:太空宇宙 更新时间:2023-11-03 18:02:26 26 4
gpt4 key购买 nike

我目前正在尝试对一个 float 进行四舍五入,但我收到一条错误消息,例如:undefined method round_to for float 16.666667.. 我的四舍五入代码是

  option = [keys[count],    (((o.poll_votes.count.to_f)/@general_poll.poll_votes.count.to_f)*100).round_to(1)]

最让我吃惊的是,我已经在多个地方使用过这段代码并且工作正常..但现在却出现错误。

提前致谢。

最佳答案

round_to 方法在 ruby​​ 核心中不存在。此功能很可能包含在您之前使用的库中,但您当前的项目中不需要它。快速搜索后,该功能似乎包含在 Ruby Facets 库中。

gem install facets 

查看这篇文章以自行添加此功能:http://www.hans-eric.com/code-samples/ruby-floating-point-round-off/

自由贸易协定:

通过小猴子修补,我们可以向 Float 类添加自定义舍入方法。

class Float
def round_to(x)
(self * 10**x).round.to_f / 10**x
end

def ceil_to(x)
(self * 10**x).ceil.to_f / 10**x
end

def floor_to(x)
(self * 10**x).floor.to_f / 10**x
end
end

---------------- 剪辑 8<--------------------

关于ruby-on-rails - 什么样的数据类型可以四舍五入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1131466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com