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


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