我正在使用
Ruby on Rails应用程序中的外部api.我需要向这家公司发送浮动信息,但他们只接受1.0,1.25,1.5,1.75,2.0等值.
我的价值可能是1.34或1.80.理想情况下,我需要将它们舍入到最接近的0.25.实现这一目标的最佳方法是什么?如果我做1.34.round(0)它会给我1.0,这比我需要的低.
谢谢!
解决方法
(1.27 * 4).round / 4.0 #=> 1.25
如果您经常使用它,那么对Float类进行修补是非常有意义的,以便使用更简单:
class Float def round_to_quarter (self * 4).round / 4.0 end end 1.27.round_to_quarter #=> 1.25 1.52.round_to_quarter #=> 1.5 1.80.round_to_quarter #=> 1.75 1.88.round_to_quarter #=> 2.0