Groovy - containsKey()



此映射是否包含此密钥?

语法

boolean containsKey(Object key)

参数

密钥 − 用于搜索的密钥。

返回值

True 或 false,具体取决于密钥值是否存在。

示例

以下是使用此方法的一个示例 −

class Example { 
   static void main(String[] args) { 
      def mp = ["TopicName" : "Maps", "TopicDescription" : "Methods in Maps"] 
      println(mp.containsKey("TopicName")); 
      println(mp.containsKey("Topic")); 
   } 
}

当我们运行以上程序时,会得到以下结果 −

true 
false
groovy_maps.htm
广告