我遇到了下面的代码,我希望 Java 能够通过异常,因为我正在迭代的 List 是空的。
public static void main(String[] args) {
final List<Map<String, Object>> candidateList = new ArrayList<>();
for (final Map<String, Object> candidate : candidateList) {
if (candidate.isEmpty()) {
System.out.println("Empty!!!");
}
}
}
但是代码执行时没有抛出任何错误或异常。
元芳怎么了
幕布斯7119047
白衣染霜花
相关分类