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


Scala Map find()用法及代碼示例


find()方法用於查找映射中滿足給定謂詞的第一個元素。

函數定義: def find(p: ((A, B)) => Boolean): Option[(A, B)]

返回類型: It returns the first element of the map which satisfies the given predicate.



範例1:

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

因此,這裏的第二對是滿足給定謂詞的第一對,因此返回第二對。
範例2:

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


相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Map find() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。