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


Scala Set dropWhile()用法及代码示例


dropWhile()方法用于从满足指定条件的集合中删除元素的最长前缀。

函数定义: def dropWhile(p: (A) => Boolean): Set[A]

返回类型: It returns a set containing all the elements after dropping the longest prefix of elements from the set that satisfies the stated condition.



范例1:

// Scala program of dropWhile()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        var s1 = Set(1, 3, 5, 4, 2)  
          
        // Print the set 
        println(s1) 
          
        // Applying dropWhile method  
        var res = s1.dropWhile(x => {x % 2 != 0})  
          
        // Displays output  
        println(res)  
      
    }  
} 
输出:
Set(5, 1, 2, 3, 4)
Set(2, 3, 4)

范例2:

// Scala program of dropWhile()  
// method  
  
// Creating object  
object GfG  
{  
  
    // Main method  
    def main(args:Array[String])  
    {  
      
        // Creating a list  
        var s1 = Set(1, 3, 5, 4, 2)  
          
        // Print the set 
        println(s1) 
          
        // Applying dropWhile method  
        var res = s1.dropWhile(x => true)  
          
        // Displays output  
        println(res)  
      
    }  
} 
输出:
Set(5, 1, 2, 3, 4)
Set()


相关用法


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