Groovy - Maps size()



返回此 Map 中的键值映射数。

语法

int size()

参数

无。

返回值

Map 的大小。

示例

以下是使用此方法的一个示例−

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

运行以上程序后,我们将得到以下结果 −

2 
3 
groovy_maps.htm
广告