📜  Scala Int to(end: Int) 方法与示例

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

Scala Int to(end: Int) 方法与示例

to(end: Int)方法用于返回从规定的 int 到“end”的范围,该范围在参数列表中给出,但这里的“步骤”未在参数列表中指定。

示例 #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)