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


Scala Iterator drop()用法及代码示例


drop()方法属于类Abstract Iterator的具体值成员。它在类Iterator和IterableOnceOps中定义。它用于将迭代器向前移动n个位置,如果n大于迭代器的长度,则它将引发异常。

函数定义: def drop(n:Int):Iterator[A]

Where, n is the number of elements to be dropped from the stated iterator.



返回类型: It returns all the elements of the stated iterator except the first n ones.

范例1:

// Scala program of drop() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating an Iterator  
        val iter = Iterator(4, 6, 10, 11, 13) 
          
        // Applying drop method 
        val x = iter.drop(4) 
          
        // Applying next method 
        val result = x.next() 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
13

在此,将删除前四个元素,然后返回之后的所有元素。
范例2:

// Scala program of drop() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating an Iterator  
        val iter = Iterator(2, 3, 4) 
          
        // Applying drop method 
        val x = iter.drop(1) 
          
        // Applying next method 
        val result = x.next() 
          
        // Displays output 
        println(result) 
          
    } 
}
输出:
3


相关用法


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