iterator(浅谈Iterator)

迭代器 Iterator 是什么? Iterator接口提供遍历任何Collection的接口。我们可以在Collection中使用迭代器方法来获取迭代器实例。迭代器取代了Java集合框架中的 Enumeration。迭代器允许调用者...

迭代器 Iterator 是什么?

Iterator接口提供遍历任何Collection的接口。我们可以在Collection中使用迭代器方法来获取迭代器实例。迭代器取代了Java集合框架中的 Enumeration。迭代器允许调用者在迭代过程中移除元素。

Iterator 怎么使用?

Iterator 使用代码如下:

List<String> list = new ArrayList....Iterator<String> it = list. iterator();while(it.hasNext()){ String str = it. next(); System. out. println(str);}

Iterator 的特点是只能单向遍历,但是更加安全,因为它可以确保,在当前遍历的集合元素被更改的时候,就会抛出 ConcurrentModificationException 异常。

如何边遍历边移除 Collection 中的元素?

边遍历边修改 Collection的唯一正确方式是使用 Iterator.remove() 方法,如下:

Iterator<Integer> it = list.iterator(); while (it.hasNext()){ it.next();//这句不能删除 it.remove(); }

上述代码中,it.next() 这句代码不能删除,否则会抛出 IllegalStateException。

浅谈Iterator

一种常见的错误代码如下:

for(Integer i : list){ list.remove(i);}

运行以上错误代码会报 ConcurrentModificationException 异常。

浅谈Iterator

这是因为当使用 for(Integer i : list) 语句时会自动生成一个iterator 来遍历该list,但同时该list 正在被 Iterator.remove() 修改。Java 一般不允许一个线程在遍历Collection时另一个线程修改它。

  • 发表于 2022-10-30 00:29:20
  • 阅读 ( 108 )
  • 分类:科技

0 条评论

请先 登录 后评论
r1543678
r1543678

810 篇文章

你可能感兴趣的文章

相关问题