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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。