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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。