📜  带有示例的 Scala Char to(end: Char) 方法

📅  最后修改于: 2022-05-13 01:55:05.529000             🧑  作者: Mango

带有示例的 Scala Char to(end: Char) 方法

to(end: Char)方法用于返回从指定字符到“end”的范围,该范围在参数列表中给出,但此处“步骤”未在参数列表中指定。

示例: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')
          
        // Displays output
        println(result)
      
    }
} 
输出:
NumericRange(A, B, C, D, E, F, 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')
          
        // Displays output
        println(result)
      
    }
} 
输出:
NumericRange(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)