Java.在一个循环,同时输出Map的key和value


//在一个循环,同时输出key和value
public static void main(String[] args) {
Map hashMap = new HashMap();
hashMap.put("a", "1234");
hashMap.put("m", "oi");
hashMap.put("p", "看");
hashMap.put("d", "fuck");
hashMap.put("e", "2");
hashMap.put("v", "-_-");//以上,添加元素

//将Map接口,变为Set接口
Set> entrySet = hashMap.entrySet();
//得到Iterator
Iterator> iterator = entrySet.iterator();

//同时输出key和value
while (iterator.hasNext()) {
//通过iterator.next(),得到key和value
Entry next = iterator.next();
System.out.println(next.getKey() + " -> " + next.getValue());
}

你可能感兴趣的:(Java.在一个循环,同时输出Map的key和value)