Ruby中的to_f函數將數字的值轉換為浮點數。如果它不適合浮點數,則返回無窮大。
用法:number.to_f
參數:該函數采用要轉換為float的整數。
返回值:該函數返回數字的浮點值。
範例1:
# Ruby program for to_f function
# Initializing the number
num1 = 5
num2 = 10
num3 = 1678
num4 = 1897.90
# Prints the int as float
puts num1.to_f
puts num2.to_f
puts num3.to_f
puts num4.to_f
輸出:
5.0 10.0 1678.0 1897.9
範例2:
# Ruby program for to_f function
# Initializing the number
num1 = 51
num2 = 10.78
num3 = 1690
num4 = 183
# Prints the int as float
puts num1.to_f
puts num2.to_f
puts num3.to_f
puts num4.to_f
輸出:
51.0 10.78 1690.0 183.0
相關用法
- Ruby Integer integer?用法及代碼示例
- Ruby Integer div()用法及代碼示例
- Ruby Integer chr用法及代碼示例
- Ruby Integer odd?用法及代碼示例
- Ruby Integer lcm()用法及代碼示例
- Ruby Integer abs()用法及代碼示例
- Scala Integer -用法及代碼示例
- Ruby Integer next用法及代碼示例
- Ruby Integer even?用法及代碼示例
- Ruby Integer gcd()用法及代碼示例
- Ruby Integer succ()用法及代碼示例
- Ruby Integer truncate()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer to_f function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。