map中取出key和value
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map中取出key和value相关的知识,希望对你有一定的参考价值。
参考技术A Mapmap=new HashMap<>();map.put("a", "a");map.put("b", "b");map.put("c", "c");map.put("d", "d");Set>st=map.entrySet(); Iterator>ig=st.iterator();while(ig.hasNext())
System.out.println(ig.next());
map中指定key的值能取出来吗
参考技术A 可以的public static void main(String[] args)
Map<String, String> map = new HashMap<String, String>();
map.put("1", "v1");
map.put("2", "v2");
for (String key : map.keySet())
System.out.println("key= " + key + " and value= " + map.get(key));
本回答被提问者采纳
以上是关于map中取出key和value的主要内容,如果未能解决你的问题,请参考以下文章