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


Ruby Integer to_int用法及代码示例


Ruby中的to_int函数将数字的值转换为int。如果数字本身是整数,则仅返回self。它是to_i函数的别名。

用法:number.to_int

参数:该函数采用要转换为int的数字。


返回值:该函数返回int值。

范例1:

# Ruby program for to_int function  
   
# Initializing the number 
num1 = 51
num2 = 10.78
num3 = 1690.89
num4 = 183
   
# Prints the number as int 
puts num1.to_int 
puts num2.to_int 
puts num3.to_int 
puts num4.to_int

输出

51
10
1690
183

范例2:

# Ruby program for to_i function  
   
# Initializing the number 
num1 = 312
num2 = 98.09
num3 = 190.23
num4 = 1312
    
# Prints the number as int 
puts num1.to_int 
puts num2.to_int 
puts num3.to_int 
puts num4.to_int

输出

312
98
190
1312


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer to_int function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。