2 回答

TA貢獻2037條經(jīng)驗 獲得超6個贊
你可以自己檢查一下實現(xiàn)情況。
讓我們考慮ArrayList一個例子。
它有一個內(nèi)部Itr類,該iterator()方法返回該內(nèi)部類的實例。
該類Itr有一個expectedModCount計數(shù)器,它是用封閉的ArrayList's初始化的modCount:
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;
...
}
當您調(diào)用 的方法Iterator(例如next()或 )時remove(),它會調(diào)用該checkForComodification()方法:
final void checkForComodification() {
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
}
如果自創(chuàng)建實例以來ArrayList'modCount已遞增,則會引發(fā)異常。Iterator

TA貢獻1818條經(jīng)驗 獲得超11個贊
沒有單一的方法可以實現(xiàn)這一點。
ArrayList
在(以及 中的其他類)的情況下java.util
,迭代器保留一個int expectedModCount
(“預期修改計數(shù)”),它與 的 (“修改計數(shù)”) 進行比較AbstractList
,int modCount
只要列表有結(jié)構(gòu)修改,它就會更新;如果兩個值不同,迭代器將引發(fā)異常。
添加回答
舉報