本文實例講述了java遍歷HashMap簡單的方法。分享給大家供大家參考。具體實作方法如下:
import java.util.HashMap; import java.util.Iterator; import java.util.Set; public class HashSetTest { public static void main(String[] args) { HashMap map = new HashMap(); map.put("a", "aa"); map.put("b", "bb"); map.put("c", "cc"); map.put("d", "dd"); map.put("e", "ee"); Set set = map.keySet(); for(Iterator itr=set.iterator();itr.hasNext();){ String value =(String) itr.next(); String key = (String)map.get(value); System.out.println(value+"="+key); } } }
希望本文所述對大家的java程式設計有所幫助。
更多java遍歷HashMap簡單的方法相關文章請關注PHP中文網!