在Java编程中,如何迭代HashMap的元素?
以下示例使用Collection
类迭代器的方法来迭代HashMap
。
package com.yiibai;
import java.util.*;
public class IterateThroughHashMap {
public static void main(String[] args) {
HashMap< String, String> hMap = new HashMap< String, String>();
hMap.put("1", "1st");
hMap.put("2", "2nd");
hMap.put("3", "3rd");
hMap.put("4", "4th");
Collection cl = hMap.values();
Iterator itr = cl.iterator();
while (itr.hasNext()) {
System.out.println(itr.next());
}
}
}
上述代码示例将产生以下结果 -
1st
2nd
3rd
4th