遍历一个map 野性酷女 2022-05-10 10:10 171阅读 0赞 # 遍历一个map # 首先我们造几个数据: HashMap<String, Integer> map = new HashMap<>(); map.put("yi", 1); map.put("er", 2); map.put("san", 3); ## 第一种方法—map取出keyset(一个只有键的集合) ## //第一种方法---map取出keyset Set<String> keySet = map.keySet(); Iterator<String> iterator = keySet.iterator(); while (iterator.hasNext()) { String key = iterator.next(); Integer integer = map.get(key); System.out.println(key+"==="+integer); } 第二种方法—map取出整个entrySet对象(set的每个元素都是个键值对) //第二种方法---map取出整个entrySet对象(set的每个元素都是个键值对) Set<Entry<String,Integer>> entrySet = map.entrySet(); Iterator<Entry<String, Integer>> iterator2 = entrySet.iterator(); while (iterator2.hasNext()) { Entry<String, Integer> next = iterator2.next(); String key = next.getKey(); Integer value = next.getValue(); System.out.println(key+"==="+value); } 第三种方法—直接用values拿到值们 //第三种方法---直接用values拿到值们 Collection<Integer> values = map.values(); Iterator<Integer> iterator = values.iterator(); while (iterator.hasNext()) { Integer next = iterator.next(); System.out.println(next+"==="); }
相关 遍历Map。 public static void main(String\[\] args) \{ Map<String, String> map = new HashMap<S た 入场券/ 2024年02月18日 14:42/ 0 赞/ 66 阅读
相关 遍历map Set<Entry<String, String>> entries = testData.entrySet(); for (Entry<String, Str 一时失言乱红尘/ 2022年10月01日 04:49/ 0 赞/ 257 阅读
相关 Map遍历 [遍历Map的四种方法][Map] public static void main(String\[\] args) \{ Map<String, String 以你之姓@/ 2022年08月04日 16:31/ 0 赞/ 265 阅读
相关 遍历map public static void main(String\[\] args) \{ Map<String, String> map = new HashMap 朴灿烈づ我的快乐病毒、/ 2022年06月01日 06:57/ 0 赞/ 312 阅读
相关 【Map】遍历Map / 根据学院id查所在校区的id和name集合-王雷-测试成功-2017年10月1日10:41:00 / @Test public v 红太狼/ 2022年05月26日 13:39/ 0 赞/ 314 阅读
相关 map遍历 import java.util.; public class Test{ public static void main(Str 拼搏现实的明天。/ 2022年05月12日 02:30/ 0 赞/ 308 阅读
相关 遍历一个map 遍历一个map 首先我们造几个数据: HashMap<String, Integer> map = new HashMap<>(); map.pu 野性酷女/ 2022年05月10日 10:10/ 0 赞/ 172 阅读
相关 遍历Map 方法一、 Map<String, Object> map= new HashMap<String, Object>(); map.put(“key1”,”value1”) 超、凢脫俗/ 2022年05月09日 03:20/ 0 赞/ 335 阅读
相关 Map遍历 Map遍历 这里对map集合进行遍历,一个是增强for循环,一个是迭代器,详见代码: public class MapTest { p 我就是我/ 2022年04月17日 06:54/ 0 赞/ 313 阅读
相关 Map遍历 public static void main(String[] args) { Map<String, String> map = n 我会带着你远行/ 2021年09月25日 19:10/ 0 赞/ 548 阅读
还没有评论,来说两句吧...