HashMap的iterator 的使用


第一种方法:
  1. Iterator it = hsMap.entrySet().iterator();  
  2. while (it.hasNext()) {  
  3. Map.Entry e = (Map.Entry) it.next();  
  4. System.out.println("Key: " + e.getKey() + "--Value: "  
  5. + e.getValue());  
  6. }  

第二种方法:
Iterator it=candidates.keySet().iterator();
while(it.hasNext())
{
expertInfo e=candidates.get(it.next());
System.out.println(e.name+"\t"+e.workTime+"\t"+e.sl);
}

第三年种方法(其实和第一种是相同的):

用foreach对Hashmap进行输出:

import java.util.*;
public class hashmap {
 public static void main(String args[])
 {
  HashMap hashmap= new HashMap();
  hashmap.put(1, "一");
  hashmap.put(2, "二");
  hashmap.put(3, "三");
  hashmap.put(4, "四");
  for(Map.Entry me: hashmap.entrySet()) 
  {//me是存放hashmap中取出的内容,并用Map.Entry 指定其泛型
   System.out.println(me.getKey() + "-->" + me.getKey());
  }
 }
}


你可能感兴趣的:(编程语言)