便利Map集合
Posted wzs9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了便利Map集合相关的知识,希望对你有一定的参考价值。
用KeySet()方法;
Map<Integer, String> map = new HashMap<Integer, String>(); map.put(01, "a"); map.put(02, "b"); map.put(03, "c"); map.put(04, "d"); Set set = map.keySet(); ArrayList<Integer> list = new ArrayList<Integer>(set); for (int i = 0; i < list.size(); i++) { int s = list.get(i); System.out.println(s); Object o = map.get(s); System.out.println(o); System.out.println("==");
以上是关于便利Map集合的主要内容,如果未能解决你的问题,请参考以下文章