Groovy - containsKey()


该地图包含该密钥吗?

句法

boolean containsKey(Object key)

参数

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