Ruby中的times函数将所有数字从给定返回到数字本身。迭代给定的块,将递增的值从number1传递到number2。如果没有给出块,则返回一个Enumerator。
用法:(number1).upto(number2)
参数:该函数采用数字1和数字2,这是返回数字的范围。它也需要一个街区。
返回值:该函数返回从number1到number2本身的所有数字。
例子1:
#Ruby program for upto() function
#Initializing the number
num1 = 8 num2 = 12
#Prints the number from num1 to num2
puts num1.upto(num2)
{
| i | print i, " "
}
#Initializing the number
num3 = 5 num4 = 15
#Prints the number from num3 to num4
puts num3.upto(num4)
{
| i | print i, " "
}
输出:
8 9 10 11 12 8 5 6 7 8 9 10 11 12 13 14 15 5
例子2:
#Ruby program for upto() function
#Initializing the number
num1 = 1 num2 = 3
#Prints the number from num1 to num2
puts num1.upto(num2)
{
| i | print i, " "
}
#Initializing the number
num3 = -7 num4 = -2
#Prints the number from num3 to num4
puts num3.upto(num4)
{
| i | print i, " "
}
输出:
1 2 3 1 -7 -6 -5 -4 -3 -2 -7
例子3:
#Ruby program for upto() function
#Initializing the number
num1 = 1 num2 = 3
#Returns an enumerator
#since no block is passed
puts num1.upto(num2)
输出:
#
参考:https://devdocs.io/ruby~2.5/integer#method-i-upto
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer bit_length用法及代码示例
- Ruby Integer magnitude用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Integer upto() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。