在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