求高手:如果把一个ArrayList放进HashMap,如何从HashMap里面把ArrayList的具体值取出来用

求高手:如果把一个ArrayList放进HashMap,如何从HashMap里面把ArrayList的具体值取出来用。

最好能写个具体的例子

非常谢谢

静以修身淡以明志
浏览 2015回答 1
1回答

Its_forever

public class ArrayListInHashMap { public static void main(String[] args) { ArrayList<Integer> arrayList = new ArrayList<Integer>(); HashMap<Integer,ArrayList<Integer>> hashMap = new HashMap<Integer,ArrayList<Integer>>(); arrayList.add(1); arrayList.add(2); arrayList.add(3); arrayList.add(4); arrayList.add(5); hashMap.put(1, arrayList); Iterator<Integer> it = hashMap.keySet().iterator(); Integer next = it.next(); ArrayList<Integer> arrayList2 = hashMap.get(next); for (Integer integer : arrayList2) { System.out.println(integer); } } }不知道是不是你想要的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java