<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 72, comments - 66, trackbacks - 0, articles - 0
    在使用Iterator處理Collection時,注意java.util.ConcurrentModificationException。
    1.如果你僅僅是對collection進行遍歷查詢,那么不必擔心什么。
    2.但如果你在遍歷過程中要對collection進行刪除,那么你就要注意了。
    For example:
    private void testDel() {  
    1.     List<String> list = new ArrayList<String>();  
    2.     for (int i = 0; i < 10; i++) {  
    3.         String str = "td" + i;  
    4.         list.add(str);  
    5.     }  
    6.   
    7.     for (Iterator it = list.iterator(); it.hasNext();) {  
    8.         String str = (String) it.next();  
    9.         if (str.equals("td5")) {  
    10.             // list.remove(str);  // 刪除方法一 
    11.             it.remove();  // 刪除方法二 
    12.         }  
    13.     }  

    上面的代碼運行沒有問題,但如果你用“方法一”替代“方法二”,則會出現java.util.ConcurrentModificationException。
    (用for-each遍歷也會出個類似問題)
    具體原因是可以看一下先看看List中的remove方法源碼:
    1. public boolean remove(Object o) {  
    2.     if (o == null) {  
    3.         for (int index = 0; index < size; index++)  
    4.             if (elementData[index] == null) {  
    5.                 fastRemove(index);  
    6.                 return true;  
    7.             }  
    8.     } else {  
    9.         for (int index = 0; index < size; index++)  
    10.             if (o.equals(elementData[index])) {  
    11.                 fastRemove(index);  
    12.                 return true;  
    13.             }  
    14.     }  
    15.     return false;  
    16. }  
    17.   
    18. private void fastRemove(int index) {  
    19.     modCount++; // 特別注意這里,這里只增加了modCount的值  
    20.     int numMoved = size - index - 1;  
    21.     if (numMoved > 0)  
    22.         System.arraycopy(elementData, index + 1, elementData, index,  
    23.                 numMoved);  
    24.     elementData[--size] = null; // Let gc do its work  

    接著看。刪除后得到下一個元素的代碼,it.next():  it為AbstractList的內部類Iterator的一個實例。
    1. public E next() {  
    2.     checkForComodification();  
    3.     try {  
    4.         E next = get(cursor);  
    5.         lastRet = cursor++;  
    6.         return next;  
    7.     } catch (IndexOutOfBoundsException e) {  
    8.         checkForComodification();  
    9.         throw new NoSuchElementException();  
    10.     }  
    11. }  
    12.   
    13. final void checkForComodification() {  //注意這個方法
    14.     if (modCount != expectedModCount)  //檢查這兩個值是否相同
    15.         throw new ConcurrentModificationException();  

    最后看Iterator的remove()方法的源代碼:
    1. public void remove() {  
    2.     if (lastRet == -1)  
    3.         throw new IllegalStateException();  
    4.     checkForComodification();  
    5.     try {  
    6.         AbstractList.this.remove(lastRet);  
    7.         if (lastRet < cursor)  
    8.             cursor--;  
    9.         lastRet = -1;  
    10.         expectedModCount = modCount; // 設置expectedModCount  
    11.     } catch (IndexOutOfBoundsException e) {  
    12.         throw new ConcurrentModificationException();  
    13.     }  
    14. }  
    15.   
    16. final void checkForComodification() {  
    17.     if (modCount != expectedModCount)  
    18.         throw new ConcurrentModificationException();  

    這下就明白了,list的remove方法只修改了modCount值,而iterator的remove能同步modCount和expectedModCount.



    Feedback

    # re: 使用Iterator 或for-each注意:java.util.ConcurrentModificationException  回復  更多評論   

    2010-03-03 11:08 by 羅萊家紡官方網站
    士大夫見說道
    主站蜘蛛池模板: 亚洲天堂在线播放| gogo全球高清大胆亚洲| 成人av片无码免费天天看| 免费国产黄网站在线观看可以下载 | 亚洲国产精品无码久久青草 | 一级毛片免费一级直接观看| 暖暖日本免费在线视频| 久久久久久A亚洲欧洲AV冫| 亚洲欧洲日韩国产综合在线二区| a级毛片高清免费视频就| 亚洲精品高清国产一线久久| 一级特黄录像免费播放肥| 亚洲国产精品成人久久| 国产一精品一AV一免费| 又粗又大又长又爽免费视频| 久久精品国产亚洲av高清漫画 | 免费成人在线电影| 久久精品亚洲一区二区三区浴池 | 女人18毛片免费观看| 亚洲AV无码AV吞精久久| 亚洲精品97久久中文字幕无码| 中文字幕在线观看免费| 亚洲欧洲日产国码久在线观看| 一个人免费观看在线视频www| 亚洲综合色婷婷七月丁香| 免费av片在线观看网站| 亚洲免费二区三区| 免费看又黄又无码的网站| 亚洲乱码一区二区三区国产精品| 日本免费大黄在线观看| 亚洲国产最大av| 国产精品1024永久免费视频| 亚洲精品无码午夜福利中文字幕| 无码少妇精品一区二区免费动态| 亚洲一卡二卡三卡| 亚洲女人被黑人巨大进入| 99re免费99re在线视频手机版| 亚洲视频无码高清在线| 国产aⅴ无码专区亚洲av麻豆| 国产精彩免费视频| 一级毛片免费播放男男|