Scala Int to(end: Int) 方法与示例
to(end: Int)方法用于返回从规定的 int 到“end”的范围,该范围在参数列表中给出,但这里的“步骤”未在参数列表中指定。
Method Definition: def to(end: Int): Inclusive
Return Type: It returns the range.
示例 #1:
// Scala program of Int to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = 5.to(10)
// Displays output
println(result)
}
}
输出:
Range(5, 6, 7, 8, 9, 10)
示例 #2:
// Scala program of Int to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = 20.to(25)
// Displays output
println(result)
}
}
输出:
Range(20, 21, 22, 23, 24, 25)