带有示例的 Scala SortedMap filterKeys() 方法
filterKeys()方法用于查找键满足给定谓词的所有对。
Method Definition: def filterKeys(p: (A) => Boolean): SortedMap[A, B]
Return Type: It returns all the “key-value” pairs of the SortedMap where, the keys satisfies the given predicate.
示例 #1:
// Scala program of filterKeys()
// method
import scala.collection.immutable.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.immutable.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()
在这里,没有返回任何对,因为没有一个键满足所述谓词。