當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Float coerce()用法及代碼示例


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]


相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby Float coerce() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。