當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。