Iterable 上的短路逻辑运算符
Short circuit logical operators over Iterable
考虑以下代码,循环可以在达到 false
值时立即结束。有没有比在每次迭代后检查 false
更好的方法?
boolean result = true;
List<Boolean> bList = new ArrayList<>();
for (boolean b : bList) {
result = result && b;
if (!result) {
break;
}
}
考虑将循环提取到其方法:
boolean allTrue(List<Boolean> bools) {
for (boolean b : bools)
if (!b)
return false;
}
return true;
}
怎么样
if (bList.contains(false)) {
...
使用Stream.allMatch是短路操作
List<Boolean> bList = new ArrayList<>();
boolean result = bList.stream().allMatch(b -> b);
考虑以下代码,循环可以在达到 false
值时立即结束。有没有比在每次迭代后检查 false
更好的方法?
boolean result = true;
List<Boolean> bList = new ArrayList<>();
for (boolean b : bList) {
result = result && b;
if (!result) {
break;
}
}
考虑将循环提取到其方法:
boolean allTrue(List<Boolean> bools) {
for (boolean b : bools)
if (!b)
return false;
}
return true;
}
怎么样
if (bList.contains(false)) {
...
使用Stream.allMatch是短路操作
List<Boolean> bList = new ArrayList<>();
boolean result = bList.stream().allMatch(b -> b);