iterator的基本用法
2019-08-16 10:59:30来源:博客园 阅读 ()
iterator的基本用法
1.iterator输出
package com.iterator.demo; import java.util.Iterator; import java.util.Set; public class IteratorDemo { public static void main(String[] args) { Set<String> all = Set.of("Hello", "world","sina","sohu"); Iterator<String> iter = all.iterator(); while (iter.hasNext()) { String string = iter.next(); System.out.println(string); } } }
运行结果:
world
hello
sina
sohu
2.remove()删除当前元素
package com.iterator.demo; import java.util.HashSet; import java.util.Iterator; import java.util.Set; public class IteratorDemo { public static void main(String[] args) { Set<String> all = new HashSet<String>(); all.add("hello"); all.add("world"); all.add("sina"); all.add("sohu"); Iterator<String> iter = all.iterator(); while (iter.hasNext()) { String string = iter.next(); System.out.println(string); if("world".equals(string)) { iter.remove();//删除当前的数据 } } System.out.println(all); } }
运行结果:
world
hello
sina
sohu
[world, hello, sina, sohu]
3.如果使用Collection中的remove()方法,则会报并发修改异常。
package com.iterator.demo; import java.util.HashSet; import java.util.Iterator; import java.util.Set; public class IteratorDemo { public static void main(String[] args) { Set<String> all = new HashSet<String>(); all.add("hello"); all.add("world"); all.add("sina"); all.add("sohu"); Iterator<String> iter = all.iterator(); while (iter.hasNext()) { String string = iter.next(); System.out.println(string); all.remove("world");//删除当前的数据 } System.out.println(all); } }
运行结果:
world Exception in thread "main" java.util.ConcurrentModificationException at java.base/java.util.HashMap$HashIterator.nextNode(HashMap.java:1490) at java.base/java.util.HashMap$KeyIterator.next(HashMap.java:1513) at com.iterator.demo.IteratorDemo.main(IteratorDemo.java:16)
所以,必须使用iterator提供的remove()方法来删除,但是不是必须的情况下,我们很少使用iterator的remove()方法。
4.ListIterator双向迭代
如果想实现由后向前的遍历,那么首先要实现由前向后遍历。
package com.iterator.demo; import java.util.ArrayList; import java.util.List; import java.util.ListIterator; public class IteratorDemo { public static void main(String[] args) { List<String> all = new ArrayList<String>(); all.add("hello"); all.add("world"); all.add("sina"); all.add("sohu"); ListIterator<String> iter = all.listIterator(); System.out.print("由前向后遍历:"); while (iter.hasNext()) { System.out.print(iter.next()+"、"); } System.out.print("\n由后向前遍历:"); while (iter.hasPrevious()) { System.out.print(iter.previous()+"、"); } } }
运行结果:
由前向后遍历:hello、world、sina、sohu、
由后向前遍历:sohu、sina、world、hello、
原文链接:https://www.cnblogs.com/sunzhongyu008/p/11230101.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- java基本数据类型 2020-06-06
- java实现分页查询 2020-06-05
- (易忘篇)java基本语法难点2 2020-06-03
- (易忘篇)java基本语法难点1 2020-05-31
- Lambda表达式用法大比较: Scala和Java 8 2020-05-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash