这张地图是否包含此密钥?
boolean containsKey(Object key)
Key - 用于搜索的密钥。
是或否取决于键值是否存在。
以下是此方法的使用示例 -
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