📜  带有示例的 Scala 迭代器 dropWhile() 方法

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

带有示例的 Scala 迭代器 dropWhile() 方法

dropWhile()方法属于Abstract Iterator类的具体值成员。它在IteratorIterableOnceOps类中定义。它丢弃满足所述谓词的最长元素前缀。

示例 #1:

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

示例 #2:

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