当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Int until(end: Int, step: Int)用法及代码示例


使用until(end:Int,step:Int)方法可返回从起始值到指定终止整数值的确切先前值的范围。在这里,范围的值正在逐步增加。

函数定义: defuntil(end:Int, step:Int):collection.immutable.Range

返回类型: It returns the range.



范例1:

// Scala program of Int until()  
// method  
    
// Creating object  
object GfG  
{   
    
    // Main method  
    def main(args:Array[String])  
    {  
        
        // Applying until method  
        val result = (10).until(17, 2)  
            
            
        // Displays output  
        println(result)  
        
    }  
} 
输出:
Range(10, 12, 14, 16)

范例2:

// Scala program of Int until()  
// method  
    
// Creating object  
object GfG  
{   
    
    // Main method  
    def main(args:Array[String])  
    {  
        
        // Applying until method  
        val result = (1).until(12, 3)  
            
            
        // Displays output  
        println(result)  
        
    }  
} 
输出:
Range(1, 4, 7, 10)


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Scala Int until(end: Int, step: Int) method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。