程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> Java 遍歷Map時 刪除元素

Java 遍歷Map時 刪除元素

編輯:更多關於編程
    package net.nie.test;
    
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    
    public class HashMapTest {
       private static Map<Integer, String> map=new HashMap<Integer,String>();
        
       /**  1.HashMap 類映射不保證順序;某些映射可明確保證其順序: TreeMap 類
        *   2.在遍歷Map過程中,不能用map.put(key,newVal),map.remove(key)來修改和刪除元素,
        *   會引發 並發修改異常,可以通過迭代器的remove():
        *   從迭代器指向的 collection 中移除當前迭代元素
        *   來達到刪除訪問中的元素的目的。  
        *   */ 
       public static void main(String[] args) {
            map.put(1,"one");
            map.put(2,"two");
            map.put(3,"three");
            map.put(4,"four");
            map.put(5,"five");
            map.put(6,"six");
            map.put(7,"seven");
            map.put(8,"eight");
            map.put(5,"five");
            map.put(9,"nine");
            map.put(10,"ten");
            Iterator<Map.Entry<Integer, String>> it = map.entrySet().iterator();
            while(it.hasNext()){
                Map.Entry<Integer, String> entry=it.next();
                int key=entry.getKey();
                if(key%2==1){
                    System.out.println("delete this: "+key+" = "+key);
                    //map.put(key, "奇數");   //ConcurrentModificationException
                    //map.remove(key);      //ConcurrentModificationException
                    it.remove();        //OK 
                }
            }
            //遍歷當前的map;這種新的for循環無法修改map內容,因為不通過迭代器。
            System.out.println("-------nt最終的map的元素遍歷:");
            for(Map.Entry<Integer, String> entry:map.entrySet()){
                int k=entry.getKey();
                String v=entry.getValue();
                System.out.println(k+" = "+v);
            }
        }
    }
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved