1. 程式人生 > >Iterator和for迴圈對比

Iterator和for迴圈對比

一、迭代器概述

  1、什麼是迭代器?

  在Java中,有很多的資料容器,對於這些的操作有很多的共性。Java採用了迭代器來為各種容器提供了公共的操作介面。這樣使得對容器的遍歷操作與其具體的底層實現相隔離,達到解耦的效果。

  在Iterator介面中定義了三個方法:

  

  2、迭代器使用

 public static void main(String[] args)
    {
        List<String> list=new ArrayList<>();
        list.add("abc");
        list.add("edf");
        list.add("ghi");
        for(Iterator<String> it=list.iterator();it.hasNext();)
        {
            System.out.println(it.next());
        }
    }


 執行結果: 

回到頂部

二、ArrayList的Iterator實現

 private class Itr implements Iterator<E> 
  {
        int cursor;       // index of next element to return
        int lastRet = -1; // index of last element returned; -1 if no such
        int expectedModCount = modCount;
       ...
    }


  在ArrayList內部定義了一個內部類Itr,該類實現了Iterator介面。

  在Itr中,有三個變數分別是

  cursor:表示下一個元素的索引位置

  lastRet:表示上一個元素的索引位置

  expectModCount:預期被修改的次數

  下面看一下Itr類實現了Iterator介面的三個方法:

 public boolean hasNext() 
 {
     return cursor != size;//當cursor不等於size時,表示仍有索引元素
 }

     public E next() //返回下一個元素
    {
            checkForComodification();
            int i = cursor;
            if (i >= size)
                throw new NoSuchElementException();
            Object[] elementData = ArrayList.this.elementData;
            if (i >= elementData.length)
                throw new ConcurrentModificationException();
            cursor = i + 1;
            return (E) elementData[lastRet = i];
    }



  在next()方法中有一個checkForComodification()方法,其實現為:

final void checkForComodification() 
    {
         if (modCount != expectedModCount)
            throw new ConcurrentModificationException();
    }


  可以看到,該函式是用來判斷集合的修改次數是否合法。

  在集合內部維護一個欄位modCount用於記錄集合被修改的次數,每當集合內部結構發生變化(add,remove,set)時,modCount+1。

  在迭代器內部也維護一個欄位expectedModCount,同樣記錄當前集合修改的次數,初始化為集合的modCount值。當我們在呼叫Iterator進行遍歷操作時,如果有其他執行緒修改list會出現modCount!=expectedModCount的情況,就會報併發修改異常java.util.ConcurrentModificationException。下面為示例程式碼:

public static void main(String[] args)
    {
         ArrayList<String> aList=new ArrayList<String>();
         aList.add("bbc");
         aList.add("abc");
         aList.add("ysc");
         aList.add("saa");
         System.out.println("移除前:"+aList);
   
         Iterator<String> it=aList.iterator();
         while(it.hasNext())
         {
             if("abc".equals(it.next()))
             {
                aList.remove("abc");          
             }
         }
         System.out.println("移除後:"+aList);
  }            
  

  上面的程式碼中,如果我們只使用迭代器來進行刪除,則不會出現併發修改異常錯誤。

  public static void main(String[] args)
    {
       ArrayList<String> aList=new ArrayList<String>();
         aList.add("bbc");
         aList.add("abc");
         aList.add("ysc");
         aList.add("saa");
         System.out.println("移除前:"+aList);
         
         Iterator<String> it=aList.iterator();
         while(it.hasNext())
         {
            if("abc".equals(it.next()))
            {
              it.remove();
            }
         }
         System.out.println("移除後:"+aList);
  }


  

public void remove()
     {
            if (lastRet < 0)
                throw new IllegalStateException();
            checkForComodification();
            try {
                ArrayList.this.remove(lastRet);
                cursor = lastRet;
                lastRet = -1;
                expectedModCount = modCount;
            } catch (IndexOutOfBoundsException ex) {
                throw new ConcurrentModificationException();
            }
     }


  在執行remove操作時,同樣先執行checkForComodification(),然後會執行ArrayList的remove()方法,該方法會將modCount值加1,這裡我們將expectedModCount=modCount,使之保持統一。

回到頂部

三、ListIterator

  上面可以看到,Iterator只提供了刪除元素的方法remove,如果我們想要在遍歷的時候新增元素怎麼辦?

  ListIterator介面繼承了Iterator介面,它允許程式設計師按照任一方向遍歷列表,迭代期間修改列表,並獲得迭代器在列表中的當前位置。

  ListIterator介面定義了下面幾個方法:

  

  下面使用ListIterator來對list進行邊遍歷邊新增元素操作:

 public static void main(String[] args)
    {
        ArrayList<String> aList = new ArrayList<String>();
        aList.add("bbc");
        aList.add("abc");
        aList.add("ysc");
        aList.add("saa");
        System.out.println("移除前:" + aList);
        ListIterator<String> listIt = aList.listIterator();
        while (listIt.hasNext())
        {
            if ("abc".equals(listIt.next()))
            {
                listIt.add("haha");
            }
        }
        System.out.println("移除後:" + aList);
    }