Java数组集合的三种遍历方式(包懂)
Posted wwgsdh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java数组集合的三种遍历方式(包懂)相关的知识,希望对你有一定的参考价值。
1 for循环
for(int i = 0;i<arr.length;i++){
System.out.print(arr[i]+" ");
}
2 foreach循环,这种方式结构简单,可以简化代码
for(int i:arr){
System.out.print(arr[i]+" ");
}
3 迭代器遍历
对于数组而言,就没必要转换为集合类的数据类型,代码反而冗杂。前面两种对于数组集合均适用
迭代器对List的遍历
List list = new ArrayList<>();
list.add("1");
list.add("2");
list.add("3");
Iterator iterator = list.iterator();
while(iterator.hasNext()){
System.out.print(iterator.next() +" ");
}
输出结果为:1 2 3
以上是关于Java数组集合的三种遍历方式(包懂)的主要内容,如果未能解决你的问题,请参考以下文章