coerce()是一个浮点类方法,它返回传递的浮点值的ceil值。
用法:float.coerce()
参数:数值(可以是整数也可以是浮点值)
返回:一个以float对象形式表示的float和数值数组。
范例1:
# Ruby code for coerce() method
# ceil value of the float value
puts "coerce example 1:#{2.5.coerce(1.1)}\n\n"
# ceil value of the float value
puts "coerce example 2:#{2.11115.coerce(22221)}\n\n"
输出:
coerce example 1:[1.1, 2.5] coerce example 2:[22221.0, 2.11115]
范例2:
# Ruby code for coerce() method
# ceil value of the float value
puts "coerce example 1:#{2.00.coerce(1.1)}\n\n"
# ceil value of the float value
puts "coerce example 2:#{-333333.coerce(2.21)}\n\n"
输出:
coerce example 1:[1.1, 2.0] coerce example 2:[2.21, -333333.0]
相关用法
- Ruby BigDecimal coerce用法及代码示例
- Ruby Numeric coerce()用法及代码示例
- Ruby Float nan?()用法及代码示例
- Ruby Float eql()用法及代码示例
- Ruby Float arg()用法及代码示例
- Ruby Float zero?()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float modulo()用法及代码示例
- Ruby Float magnitude()用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Float to_i()用法及代码示例
- Ruby Float rationalize()用法及代码示例
- Ruby Float to_r()用法及代码示例
- Ruby Float prev_float()用法及代码示例
- Ruby Float next_float()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby Float coerce() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。