size()

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

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

语法 (Syntax)

int size()

参数 (Parameters)

没有。

返回值 (Return Value)

地图的大小。

例子 (Example)

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

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