1 For循环方式

  1. 最普通的遍历方式,即定义一个下标int i,按照依次递增循环遍历集合。
  2. 使用for(数据类型 变量名 : 集合引用名)的方式遍历
  3. 集合有一个forEach的方法,可以调用该方法,参数lambda匿名函数进行遍历

2 代码示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import java.util.ArrayList;
import java.util.List;

public class ListTest {
public static void main(String[] args) {
List aList = new ArrayList();
aList.add("nihao");
aList.add("wohao");

//方式1
for (int i=0; i< aList.size(); i++){
System.out.println(aList.get(i));
}

//方式2
for (Object each : aList){
System.out.println(each);
}

//方式3
aList.forEach(each->{
System.out.println(each);
});
}
}

运行结果:
nihao
wohao
nihao
wohao
nihao
wohao

写在最后

欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
微信公众号