Map遍历 我就是我 2022-04-17 06:54 293阅读 0赞 ## Map遍历 ## 这里对map集合进行遍历,一个是增强for循环,一个是迭代器,详见代码: public class MapTest { public static void main(String[] args) { Map<String, String> map = new HashMap<>(); map.put("01", "a"); map.put("02", "b"); map.put("03", "c"); map.put("04", "d"); map.put("05", "e"); map.put("06", "f"); Set<Map.Entry<String, String>> entries = map.entrySet(); Iterator<Map.Entry<String, String>> it = entries.iterator(); while (it.hasNext()) { System.out.print(it.next() + ", "); } System.out.println(); //换行 System.out.println("~~~~~~~~~~分割线~~~~~~~~~~~~~~"); for (Map.Entry<String, String> entry : map.entrySet()) { System.out.print(entry.getKey() + "=" + entry.getValue() + ", "); } } } 打印结果如下: ![在这里插入图片描述][20181114115809720.jpg] OK,遍历完成!如果想要单独的遍历出map集合的所有key或者value,可以通过map.keySet()或者map.values()拿到所有的key或者value,然后对其进行遍历即可。这样就无需使用map.entrySet()了。 [20181114115809720.jpg]: /images/20220417/6831eb017c964499868ca25f3ae6c8ff.png
相关 遍历Map。 public static void main(String\[\] args) \{ Map<String, String> map = new HashMap<S た 入场券/ 2024年02月18日 14:42/ 0 赞/ 49 阅读
相关 遍历map Set<Entry<String, String>> entries = testData.entrySet(); for (Entry<String, Str 一时失言乱红尘/ 2022年10月01日 04:49/ 0 赞/ 237 阅读
相关 Map遍历 [遍历Map的四种方法][Map] public static void main(String\[\] args) \{ Map<String, String 以你之姓@/ 2022年08月04日 16:31/ 0 赞/ 248 阅读
相关 遍历map public static void main(String\[\] args) \{ Map<String, String> map = new HashMap 朴灿烈づ我的快乐病毒、/ 2022年06月01日 06:57/ 0 赞/ 292 阅读
相关 【Map】遍历Map / 根据学院id查所在校区的id和name集合-王雷-测试成功-2017年10月1日10:41:00 / @Test public v 红太狼/ 2022年05月26日 13:39/ 0 赞/ 293 阅读
相关 map遍历 import java.util.; public class Test{ public static void main(Str 拼搏现实的明天。/ 2022年05月12日 02:30/ 0 赞/ 289 阅读
相关 遍历Map 方法一、 Map<String, Object> map= new HashMap<String, Object>(); map.put(“key1”,”value1”) 超、凢脫俗/ 2022年05月09日 03:20/ 0 赞/ 318 阅读
相关 Map遍历 Map遍历 这里对map集合进行遍历,一个是增强for循环,一个是迭代器,详见代码: public class MapTest { p 我就是我/ 2022年04月17日 06:54/ 0 赞/ 294 阅读
相关 map遍历 for (Map.Entry<?, ?> entry : beans.entrySet()) \{ String 梦里梦外;/ 2022年02月27日 11:28/ 0 赞/ 349 阅读
相关 Map遍历 public static void main(String[] args) { Map<String, String> map = n 我会带着你远行/ 2021年09月25日 19:10/ 0 赞/ 532 阅读
还没有评论,来说两句吧...