我是靠谱客的博主 明理裙子,最近开发中收集的这篇文章主要介绍ArrayList中迭代器(Iterator)源码解析,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、迭代器接口(java.util.Iterator)

JDK中的定义:对 collection 进行迭代的迭代器。

Iterator取代了 Java Collections Framework 中的 Enumeration
Iterator与Enumeration有两点不同

  1. 迭代器允许调用者利用定义良好的语义在迭代期间从迭代器所指向的 collection 移除元素。
  2. 方法名称得到了改进。
package java.util;
import java.util.function.Consumer;
public interface Iterator<E> {
boolean hasNext();
E next();
default void remove() {
throw new UnsupportedOperationException("remove");
}
default void forEachRemaining(Consumer<? super E> action) {
Objects.requireNonNull(action);
while (hasNext())
action.accept(next());
}
}
  1. **hasNext()方法:**判断容器内是否还有可供访问的元素;
  2. **next()方法:**返回迭代器刚越过的元素的引用;
  3. **remove():**删除迭代器刚越过的元素
  4. **forEachRemaining(Consumer<? super E> action):**消费者类型函数式接口方法,该方法按迭代顺序遍历元素

eg:
在这里插入图片描述

二、ArrayList中的Iterator实现

在ArrayList中通过内部类Itr实现Iterator接口实现迭代器功能。

private class Itr implements Iterator<E> {
int cursor;
// 下一个元素的索引位置
int lastRet = -1; // 上一个元素索引的位置
//modCount用于记录ArrayList集合的修改次数,赋、值给expectedModCount 用于checkForComodification()方法判断ArrayList在迭代过程中是否发生修改
int expectedModCount = modCount;
Itr() {}	//无参构造方法
//通过判断curso的值和size是否相等来判断集合中是否还有可供访问的元素
public boolean hasNext() {
return 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; //cursor + 1
return (E) elementData[lastRet = i]; //lastRet + 1 且返回cursor处元素
}
public void remove() {
if (lastRet < 0)
throw new IllegalStateException();
checkForComodification();
try {
ArrayList.this.remove(lastRet);//调用ArrayList的remove方法
cursor = lastRet;	//将上一次索引赋值给下一次索引,即cursor位置前移
lastRet = -1;	//重置lastRet
expectedModCount = modCount;//将ArrayList的modCount赋值给expectedModCount 这样就不会报错
} catch (IndexOutOfBoundsException ex) {
throw new ConcurrentModificationException();
}
}
//函数式接口实现
public void forEachRemaining(Consumer<? super E> consumer) {
Objects.requireNonNull(consumer);
final int size = ArrayList.this.size;
int i = cursor;
if (i >= size) {
return;
}
final Object[] elementData = ArrayList.this.elementData;
if (i >= elementData.length) {
throw new ConcurrentModificationException();
}
while (i != size && modCount == expectedModCount) {
consumer.accept((E) elementData[i++]);
}
cursor = i;
lastRet = i - 1;
checkForComodification();
}
//修改异常检查
final void checkForComodification() {
if (modCount != expectedModCount)//通过对比ArrayList的modCount值和Iterator的expectedModCount的值是否相等,来判断是否修改异常
throw new ConcurrentModificationException();
}
}
  1. **hasNext()方法:**通过判断curso的值和size是否相等来判断集合中是否还有可供访问的元素
  2. next()方法:返回cursor索引位置处的元素,并且修改cursor、lastRet的值;
  3. **remove():**调用ArrayList本身的remove()方法删除lastRet位置元素,然后修改modCount
  4. **forEachRemaining(Consumer<? super E> action):**消费者类型函数式接口方法,该方法按迭代顺序遍历元素
  5. **checkForComodification():**通过对比ArrayList的modCount值和Iterator的expectedModCount的值是否相等,来判断是否修改异常

最后

以上就是明理裙子为你收集整理的ArrayList中迭代器(Iterator)源码解析的全部内容,希望文章能够帮你解决ArrayList中迭代器(Iterator)源码解析所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部