containsKey()

优质
小牛编辑
124浏览
2023-12-01

这张地图是否包含此密钥?

语法 (Syntax)

boolean containsKey(Object key)

参数 (Parameters)

Key - 用于搜索的密钥。

返回值 (Return Value)

是或否取决于键值是否存在。

例子 (Example)

以下是此方法的使用示例 -

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