Java fori便历List集合判断是否最后一个
时间: 2023-06-20 13:09:02 浏览: 90
java List集合遍历测试
可以使用List集合的size()方法获取集合的长度,然后在for循环中判断当前元素是否为最后一个元素。示例代码如下:
```java
List<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
for (int i = 0; i < list.size(); i++) {
String element = list.get(i);
if (i == list.size() - 1) {
System.out.println(element + " is the last element.");
} else {
System.out.println(element + " is not the last element.");
}
}
```
输出结果为:
```
A is not the last element.
B is not the last element.
C is the last element.
```
阅读全文