码迷,mamicode.com
首页 > 编程语言 > 详细

java中的map

时间:2019-12-11 19:46:08      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:style   插入   print   www   使用   for循环   out   key   put   

Map 初始化

Map<String, String> map = new HashMap<String, String>();

插入元素

map.put("key1", "value1");

获取元素

map.get("key1")

移除元素

map.remove("key1");

清空map

map.clear();

 

 

使用for循环    keySet()遍历

for (String key : map.keySet()) {
    System.out.println(key + "" + map.get(key));
}

 

参考自:https://www.jianshu.com/p/27577315af0c

java中的map

标签:style   插入   print   www   使用   for循环   out   key   put   

原文地址:https://www.cnblogs.com/150536FBB/p/12024113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!