java中遍歷Map的4種方法

dawn009發表於2015-07-15
/**
 * 遍歷Map的四種方法
 */
  public static void method01(){

      Map map = new HashMap();
      map.put("1", "value1");
      map.put("2", "value2");
      map.put("3", "value3");

      //第一種:普遍使用,二次取值
      System.out.println("透過Map.keySet遍歷key和value:");
      for (String key : map.keySet()) {
      System.out.println("key= "+ key + " and value= " + map.get(key));
      }
      
      //第二種
      System.out.println("透過Map.entrySet使用iterator遍歷key和value:");
      Iterator> it = map.entrySet().iterator();
      while (it.hasNext()) {
      Map.Entry entry = it.next();
      System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
      }
      
      //第三種:推薦,尤其是容量大時
      System.out.println("透過Map.entrySet遍歷key和value");
      for (Map.Entry entry : map.entrySet()) {
      System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
      }

      //第四種
      System.out.println("透過Map.values()遍歷所有的value,但不能遍歷key");
      for (String v : map.values()) {
      System.out.println("value= " + v);
      }
  }
     //自己遍歷方法
      public static void method03(){
          Map map = new HashMap();
          map.put("1", "value1");
          map.put("2", "value2");
          map.put("3", "value3");
          
          Iterator it = map.keySet().iterator();
          
          /* String key="";
          String value="";
          while(it.hasNext()){
               key = (String) it.next();
              value = map.get(key);
           System.out.println(key+":"+value);
          } */

  }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29119536/viewspace-1734059/,如需轉載,請註明出處,否則將追究法律責任。

相關文章