当前位置:   article > 正文

Iterable 迭代器_iterable 只能迭代一次?

iterable 只能迭代一次?

Iterable 迭代器只能迭代一次

  1. public class IterableTest {
  2. public static void main(String[] args) {
  3. List<String> list=new ArrayList<>();
  4. list.add("a");
  5. list.add("b");
  6. list.add("c");
  7. list.add("d");
  8. list.add("e");
  9. Iterator<String> iterator = list.iterator();
  10. while (iterator.hasNext()) {
  11. String next = iterator.next();
  12. System.out.println(next);
  13. }
  14. System.out.println("-------------------------------------");
  15. while (iterator.hasNext()) {
  16. String next = iterator.next();
  17. System.out.println(next);
  18. }
  19. }
  20. }

输出结果:

  1. a
  2. b
  3. c
  4. d
  5. e
  6. -------------------------------------

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/100768
推荐阅读
相关标签
  

闽ICP备14008679号