带有示例的 Scala Char to(end: Char, step: Char) 方法
to(end: Char, step: Char)方法用于返回从指定字符到“end”的范围,该范围在参数列表中给出,并且在参数列表中还指定了一些“步骤”。
Method Definition: def to(end: Char, step: Char): Inclusive[Char]
Return Type: It returns the range.
示例:1#
// Scala program of to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = 'A'.to('G', 2)
// Displays output
println(result)
}
}
输出:
NumericRange(A, C, E, G)
示例:2#
// Scala program of to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = ('0').to('9', 3)
// Displays output
println(result)
}
}
输出:
NumericRange(0, 3, 6, 9)