取HashMap集合中的key和value的三种方法

 public static  void main(String[] args){
  Map map=new HashMap();
  map.put("1", 21);
  map.put("2", 123);
  map.put("3", 98);
  
//   方法1    此方法效率比较高 
  Iterator ite=map.entrySet().iterator();
  while(ite.hasNext()){
   Entry string=(Entry)ite.next();
        System.out.print(string.getKey()+"/"); 
        System.out.println(string.getValue()); 
  }

 

//   方法2 此方法效率比较低  
     Iterator iteKey=map.keySet().iterator();
     while(iteKey.hasNext()){
      Object key=iteKey.next();
            Object value=map.get(key);
            System.out.print(key+"/");
            System.out.println(value);
      
     }
  
//  方法3 
    Set> set = map.entrySet();
        for(Entry entry: set)
        {
            System.out.println(entry.getKey() + "/" + entry.getValue());
        }
 }

你可能感兴趣的:(算法及数据结构)