java的ConcurrentModificationException問題

 1 public static void HashSetError() {
 2         Map<String, Set<String>> tempMap1 = new HashMap<String, Set<String>>();
 3         for (int i = 0; i < 10; i++) {
 4             Set<String> set = new HashSet<String>();
 5             set.add(String.valueOf(i));
 6             set.add(String.valueOf(i*10));
 7             tempMap1.put(String.valueOf(i), set);
 8         }
 9 
10         Map<String, Set<String>> tempMap2 = new HashMap<String, Set<String>>();
11 
12         Set<String> set = tempMap1.get(String.valueOf(5));
13         tempMap2.put("t", set);
14         
15         for(String str:set){
16             Set<String> tempSet = tempMap2.get("t");
17             tempSet.add(str+"12");            
18         }
19 
20     }

執行報錯spa

分析緣由:code

雖然沒有明顯的修改和增長set,可是實際上已經增長。對象

tempMap2 從tempMap1中獲取Set<String>   [5,50],此時是把tempMap2的key值引用指向了Set<String>集合。blog

故而 tempMap1 的key="5" 和tempMap2 的key="t" 指向了同一Set<String>集合內存

當17行改變tempmap2的時候,Set集合改變   tempMap1 key="5"的value引用不變 但對象值已改變。get

解決方法:class

tempMap2.put("t", new HashSet<String>(set));用關鍵字new從新開闢一塊內存空間,2個引用分別指向不一樣的位置,其中一個改變,另外一個不受影響。
相關文章
相關標籤/搜索