📌  相关文章
📜  Scala Mutable SortedMap filterKeys() 方法与示例

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

Scala Mutable SortedMap filterKeys() 方法与示例

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

示例 #1:

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

在这里,仅返回两个键值对,因为根据所述谓词,它们的键大于两个。
示例 #2:

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

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