大家好,又见面了,我是你们的朋友全栈君。
map遍历的方式有4种
1、使用for循环遍历map;
2、使用迭代遍历map;
3、使用keySet迭代遍历map;
4、使用entrySet遍历map。
java代码:
Map<string,string> map=new HashMap<string,string>();
map.put(“username”, “qq”);
map.put(“passWord”, “123”);
map.put(“userID”, “1”);
map.put(“email”, “qq@qq.com”);
方法一、for循环
for(Map.Entry<string, string=””> entry:map.entrySet()){
System.out.println(entry.getKey()+”—>”+entry.getValue());
}
方法二、迭代
Set set = map.entrySet();
Iterator i = set.iterator();
while(i.hasNext()){
Map.Entry<string, string=””> entry1=(Map.Entry<string, string=””>)i.next();
System.out.println(entry1.getKey()+”==”+entry1.getValue());
}
方法三、keySet()迭代
Iterator it=map.keySet().iterator();
while(it.hasNext()){
String key;
String value;
key=it.next().toString();
value=map.get(key);
System.out.println(key+”–“+value);
}
方法四、entrySet()迭代
Iterator it=map.entrySet().iterator();
System.out.println( map.entrySet().size());
String key;
String value;
while(it.hasNext()){
Map.Entry entry = (Map.Entry)it.next();
key=entry.getKey().toString();
value=entry.getValue().toString();
System.out.println(key+”====”+value);
} for (Map.Entry<string, string=””> entry : map.entrySet()) {
System.out.println(“key= ” + entry.getKey() + ” and value= ” + entry.getValue());
}
原文地址:https://www.php.cn/java/guide/464203.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/155230.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...