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


Scala Map filterKeys()用法及代码示例


filterKeys()方法用于查找键满足给定谓词的所有对。

函数定义: def filterKeys(p: (A) => Boolean): Map[A, B]

返回类型: It returns all the “key-value” pairs of the map where, the keys satisfies the given predicate.



范例1:

// Scala program of filterKeys() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating map 
        val m1 = Map(5 -> "geeks", 4 -> "for", 2 -> "cs") 
          
        // Applying filterKeys method 
        val result = m1.filterKeys(_ > 2) 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
Map(5 -> geeks, 4 -> for)

在此,仅返回两个键值对,因为它们的键大于指定谓词的两个。
范例2:

// Scala program of filterKeys() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating map 
        val m1 = Map(3 -> "geeks", 1 -> "for", 2 -> "cs") 
          
        // Applying filterKeys method 
        val result = m1.filterKeys(_ > 3) 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
Map()

在此,由于没有一个键满足所陈述的谓词,因此不返回任何对。



相关用法


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