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


Ruby Integer to_f用法及代碼示例


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


相關用法


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