当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Map filter()用法及代码示例


filter()方法用于选择Map中满足指定谓词的所有元素。

函数定义: def filter(p: ((A, B))=> Boolean): Map[A, B]

返回类型: It returns a new map consisting all the elements of the map which satisfies the given predicate.



范例1:

// Scala program of filter() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating map 
        val m1 = Map("geeks" -> 5, "for" -> 3) 
          
        // Applying filter method 
        val result = m1.filter(x => x._1 == "geeks" && x._2 == 5) 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
Map(geeks -> 5)

范例2:

// Scala program of filter() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating map 
        val m1 = Map("geeks" -> 5, "for" -> 3) 
          
        // Applying filter method 
        val result = m1.filter(x => x._1 == "for" && x._2 == 5) 
          
        // Displays output 
        println(result) 
      
    } 
}
输出:
Map()

在此,由于没有元素满足指定的谓词,因此将返回一个空映射。



相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Map filter() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。