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


Ruby Integer times用法及代碼示例


Ruby中的times函數返回從0到數字本身的所有數字。迭代給定的塊,將遞增的值從0傳遞到限製。如果沒有給出塊,則返回一個Enumerator。

用法:(number).times

參數:該函數采用整數,直到返回數字。它也需要一個街區。


返回值:該函數返回從0到數字本身的所有數字。

範例1:

# Ruby program for times function  
   
# Initializing the number  
num1 = 8
   
# Prints the number from 0 to num1  
puts num1.times { |i| print i, " " } 
    
# Initializing the number 
num2 = 5
   
# Prints the number from 0 to num2 
puts num2.times { |i| print i, " " }

輸出:

0 1 2 3 4 5 6 7 8
0 1 2 3 4 5

範例2:

# Ruby program for times function  
   
# Initializing the number  
num1 = 4
   
# Prints the number from 0 to num1  
puts num1.times { |i| print i, " " } 
   
# Initializing the number 
num2 = -2
   
# Prints the number from 0 to num2 
puts num2.times { |i| print i, " " }

輸出

0 1 2 3 4
-2

範例3:

# Ruby program for times function  
   
# Initializing the number 
num1 = 5
   
# Prints enumerator as no block is given  
puts num1.times 

輸出

#


相關用法


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