在开发中在使用Map时,如果需要将Map作为临时的数据存储和处理,可以不用每次都去新建一个Map,可以使用clear方法来进行清空Map。
例如:
Map map = new HashMap<>();
map.put("text", "hello");
System.out.print(map);
// Clear map
map.clear();
System.out.print(map)
两次的输出结果是:
{"text": "hello"}
{}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)