class Float
def precision(p)
# Make sure the precision level is actually an integer and > 0
raise ArgumentError, "#{p} is an invalid precision level. Valid ranges are integers > 0." unless p.class == Fixnum or p < 0
# Special case for 0 precision so it returns a Fixnum and thus doesn't have a trailing .0
return self.round if p == 0
# Standard case
return (self * 10**p).round.to_f / 10**p
end
end
class Float
alias oldround:round
def round(precision = nil)
if precision.nil?
return self
else
return ((self * 10**precision).oldround.to_f) / (10**precision)
end
end
end
9条答案
按热度按时间djmepvbi1#
传递一个要舍入的参数,该参数包含要舍入到的小数位数
字符串
l2osamch2#
显示时,可以使用(例如)
字符串
如果要将其存储为舍入值,可以使用
型
mcvgt66p3#
你可以用它来四舍五入到一个精确度。
字符串
oiopk7p54#
你可以在Float类中添加一个方法,我从stackoverflow中学到了这一点:
字符串
tvz2xvvm5#
您还可以提供一个负数作为
round
方法的参数,以舍入到10、100等的最接近倍数。字符串
8yparm6h6#
(2.3465*100).round()/100.0
怎么样?js4nwp547#
字符串
tnkciper8#
如果你只需要显示它,我会使用number_with_precision助手。如果你在其他地方需要它,我会使用,正如Steve Weet指出的,
round
方法qqrboqgw9#
对于ruby 1.8.7,你可以在代码中添加以下内容:
字符串