返回此Map中键 - 值映射的数量。
int size()
没有。
地图的大小。
以下是此方法的使用示例 -
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