亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用java 怎么將Map轉化為二維數組

發布時間:2020-12-02 16:32:54 來源:億速云 閱讀:213 作者:Leah 欄目:編程語言

利用java 怎么將Map轉化為二維數組?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

實例代碼:

import java.util.HashMap; 
import java.util.Iterator; 
import java.util.Map; 
 
public class Test { 
  public static void main(String[] args) { 
    int a = 0, b = 0, c = 0; 
    // 第一種:通過Map.keySet()遍歷Map及將Map轉化為二維數組 
    Map<String, String> map1 = new HashMap<String, String>(); 
    map1.put("012013012013", "張三"); 
    map1.put("012013012014", "張四"); 
    String[][] group1 = new String[map1.size()][2]; 
    System.out.println("第一種:通過Map.keySet()遍歷map1的key和value"); 
    for (String key : map1.keySet()) {  
      System.out.println("key = " + key + " and value = " + map1.get(key));  
      group1[a][0] = key; 
      group1[a][1] = map1.get(key); 
      a++; 
    }  
    System.out.println("map1.size()為:" + map1.size() + ",a為:" + a + ",group1數組的長度為:" + group1.length); 
    System.out.println("----------------------------------------------------"); 
    for(int n = 0; n < group1.length; n++) { 
      System.out.println("key = " + group1[n][0] + " and value = " + group1[n][1]);  
    } 
     
    // 第二種:通過Map.entrySet()使用iterator()遍歷Map及將Map轉化為二維數組 
    Map<String, String> map2 = new HashMap<String, String>(); 
    map2.put("112013012013", "李三"); 
    map2.put("112013012014", "李四"); 
    System.out.println("\n" + "第二種:通過Map.entrySet()使用iterator()遍歷map2的key和value"); 
    Iterator<Map.Entry<String, String>> iterator = map2.entrySet().iterator();  
    String[][] group2 = new String[map2.size()][2]; 
    while (iterator.hasNext()) {  
      Map.Entry<String, String> entry = iterator.next();         
      System.out.println("key = " + entry.getKey() + " and value = " + entry.getValue()); 
      group2[b][0] = entry.getKey(); 
      group2[b][1] = entry.getValue(); 
      b++; 
    }  
    System.out.println("map2.size()為:" + map2.size() + ",b為:" + b + ",group2數組的長度為:" + group2.length); 
    System.out.println("----------------------------------------------------"); 
    for(int n = 0; n < group2.length; n++) { 
      System.out.println("key = " + group2[n][0] + " and value = " + group2[n][1]);  
    } 
     
    // 第三種:通過Map.entrySet()遍歷遍歷Map及將Map轉化為二維數組 
    Map<String, String> map = new HashMap<String, String>(); 
    map.putAll(map1); 
    map.putAll(map2);   
    String[][] group3 = new String[map.size()][2]; 
    System.out.println("\n" + "第三種:通過Map.entrySet()遍歷map的key和value ");    
    for (Map.Entry<String, String> entry : map.entrySet()) {  
      System.out.println("key = " + entry.getKey() + " and value = " + entry.getValue());  
      group3[c][0] = entry.getKey(); 
      group3[c][1] = entry.getValue(); 
      c++; 
    } 
    System.out.println("map.size()為:" + map.size() + ",c為:" + c + ",group3數組的長度為:" + group3.length); 
    System.out.println("----------------------------------------------------"); 
    for(int n = 0; n < group3.length; n++) { 
      System.out.println("key = " + group3[n][0] + " and value = " + group3[n][1]);  
    } 
     
  } 
} 

輸出結果為:

第一種:通過Map.keySet()遍歷map1的key和value 
key = 012013012013 and value = 張三 
key = 012013012014 and value = 張四 
map1.size()為:2,a為:2,group1數組的長度為:2 
---------------------------------------------------- 
key = 012013012013 and value = 張三 
key = 012013012014 and value = 張四 
 
第二種:通過Map.entrySet()使用iterator()遍歷map2的key和value 
key = 112013012014 and value = 李四 
key = 112013012013 and value = 李三 
map2.size()為:2,b為:2,group2數組的長度為:2 
---------------------------------------------------- 
key = 112013012014 and value = 李四 
key = 112013012013 and value = 李三 
 
第三種:通過Map.entrySet()遍歷map的key和value  
key = 112013012014 and value = 李四 
key = 112013012013 and value = 李三 
key = 012013012013 and value = 張三 
key = 012013012014 and value = 張四 
map.size()為:4,c為:4,group3數組的長度為:4 
---------------------------------------------------- 
key = 112013012014 and value = 李四 
key = 112013012013 and value = 李三 
key = 012013012013 and value = 張三 
key = 012013012014 and value = 張四 

看完上述內容,你們掌握利用java 怎么將Map轉化為二維數組的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石棉县| 浠水县| 兴山县| 延长县| 六盘水市| 监利县| 芮城县| 辽源市| 邯郸市| 重庆市| 萝北县| 沾益县| 突泉县| 泗阳县| 汝城县| 深圳市| 德保县| 宝兴县| 曲麻莱县| 文成县| 邵武市| 青州市| 望江县| 莱州市| 阿拉善盟| 盘山县| 环江| 潼关县| 岳池县| 雷州市| 乌审旗| 汉川市| 永和县| 横峰县| 砚山县| 来凤县| 客服| 宜黄县| 东源县| 津南区| 鄂托克前旗|