小编典典

如何在 JRuby 中将浮点数舍入到小数点后 2 位?

all

如何在 JRuby(1.6.x) 中将浮点数舍入到小数点后 2 位?

number = 1.1164
number.round(2)

# The above shows the following error
# wrong number of arguments (1 for 0)

阅读 65

收藏
2022-07-18

共1个答案

小编典典

Float#round 可以在 Ruby 1.9 中使用参数,而不是在 Ruby 1.8 中。JRuby 默认为 1.8,但它能够在 1.9
模式下运行

2022-07-18