java使用for循环遍历list
时间: 2023-08-24 09:07:28 浏览: 86
详解Java中list,set,map的遍历与增强for循环
5星 · 资源好评率100%
可以使用以下代码遍历List:
```
List<String> list = new ArrayList<>();
for (int i = 0; i < list.size(); i++) {
String item = list.get(i);
// 对item进行操作
}
```
或者使用增强for循环:
```
List<String> list = new ArrayList<>();
for (String item : list) {
// 对item进行操作
}
```
需要注意的是,在遍历List的过程中,不要修改List的长度,否则可能会导致ConcurrentModificationException异常。
阅读全文