📜  带有示例的 Scala Map filterKeys() 方法

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

带有示例的 Scala Map filterKeys() 方法

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

示例 #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()

在这里,没有返回任何对,因为没有一个键满足所述谓词。