📜  Groovy-地图

📅  最后修改于: 2020-11-04 06:40:43             🧑  作者: Mango


Map(也称为关联数组,字典,表和哈希)是对象引用的无序集合。通过键值访问Map集合中的元素。映射中使用的键可以是任何类。当我们插入Map集合时,需要两个值:键和值。

以下是一些地图示例-

  • [‘TopicName’:’Lists’,’TopicName’:’Maps’] –键值对的集合,这些键值对具有TopicName作为键及其各自的值。

  • [:] –空的地图。

在本章中,我们将讨论Groovy中可用的地图方法。

Sr.No. Methods & Description
1 containsKey()

Does this Map contain this key?

2 get()

Look up the key in this Map and return the corresponding value. If there is no entry in this Map for the key, then return null.

3 keySet()

Obtain a Set of the keys in this Map.

4 put()

Associates the specified value with the specified key in this Map. If this Map previously contained a mapping for this key, the old value is replaced by the specified value.

5 size()

Returns the number of key-value mappings in this Map.

6 values()

Returns a collection view of the values contained in this Map.