当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。