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


Scala SortedMap contains()用法及代码示例


Scala的contains()方法与Scala的isDefinedAt方法等效,但是唯一的区别是,在所有PartialFunction类上都可以看到isDefinedAt,而contains明确定义为Scala的SortedMap接口。它检查指定的SortedMap是否包含键的绑定。

函数定义: def contains(key: K): Boolean
Where, k is the key.

返回类型: It returns true if there is a binding for the key in the SortedMap stated else returns false.



范例1:

// Scala program of contains() 
// method 
import scala.collection.immutable.SortedMap 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating a SortedMap 
        val m1 = SortedMap(3 -> "geeks", 4 -> "for", 4 -> "for") 
          
        // Applying contains method 
        val result = m1.contains(3) 
          
        // Displays output 
        println(result) 
  
    } 
}                                          
                                        
输出:
true

在这里,contains方法具有与上述SortedMap中存在的键相同的键,因此它返回true。范例2:

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

在这里,contains方法具有与上述SortedMap中存在的键不同的键,因此它返回false。



相关用法


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