我是靠谱客的博主 斯文电源,最近开发中收集的这篇文章主要介绍Iterator迭代器,集合专用的遍历方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.集合类Collection的概述
2.Collection集合遍历以及集合转数组遍历
3.Collection存储自定义对象并遍历练习
4.Iterator迭代器,集合专用的遍历方式
5.Iterator集合迭代器遍历练习

Iterator迭代器,集合专用的遍历方式

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
/*	Iterator iterator():迭代器,集合的专用遍历方式
*
Object next():获取元素,并移动到下一个位置。
*
NoSuchElementException:没有这样的元素,因为你已经找到最后了。
*
boolean hasNext():如果仍有元素可以迭代,则返回 true。(
*/
public class IteratorDemo {
public static void main(String[] args) {
// 创建集合对象
Collection c = new ArrayList();
// 创建并添加元素
// String s = "hello";
// c.add(s);
c.add("hello");
c.add("world");
c.add("java");
// Iterator iterator():迭代器,集合的专用遍历方式
Iterator it = c.iterator(); // 实际返回的肯定是子类对象,这里是多态
// Object obj = it.next();
// System.out.println(obj);
// System.out.println(it.next());
// System.out.println(it.next());
// System.out.println(it.next());
// System.out.println(it.next());
// 最后一个不应该写,所以,我们应该在每次获取前,如果有一个判断就好了
// 判断是否有下一个元素,有就获取,没有就不搭理它
// if (it.hasNext()) {
// System.out.println(it.next());
// }
// if (it.hasNext()) {
// System.out.println(it.next());
// }
// if (it.hasNext()) {
// System.out.println(it.next());
// }
// if (it.hasNext()) {
// System.out.println(it.next());
// }
// if (it.hasNext()) {
// System.out.println(it.next());
// }
// 最终版代码
while (it.hasNext()) {
// System.out.println(it.next());
String s = (String) it.next();
System.out.println(s);
}
}
}

最后

以上就是斯文电源为你收集整理的Iterator迭代器,集合专用的遍历方式的全部内容,希望文章能够帮你解决Iterator迭代器,集合专用的遍历方式所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部