最高效map遍历

public class Test {     
 public static void main(String[] args) {          
    HashMap hm = new HashMap> entrySet = hm.entrySet();         
   Iterator> iter = entrySet.iterator();         
   while (iter.hasNext()) {            
  Map.Entry entry = iter.next();            
    System.out.println(entry.getKey() + "\t" + entry.getValue());         
     }   
   }  
}  

 

你可能感兴趣的:(最高效map遍历)