Groovy - Maps get()

在 Map 中查找 key 并返回对应的值。 如果此 Map 中没有该键的条目,则返回 null。


语法

Object get(Object key)

参数

Key − 搜索检索的关键词。


返回值

key-value 键值对,如果不存在则为 NULL。


示例

以下是该方法的用法示例 −

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

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

Maps 
Null

❮ Groovy 集合