有没有一种方法可以放入for循环中,其中第一个循环仅检查abb.iscurrently()
以及它的真值是否位于块内,而在第二个循环中仅检查abb.islately()
而不检查{{1} }?我当前的代码。
abb.iscurrently()
答案 0 :(得分:0)
使用Continue;
跳过循环中的其余步骤。
答案 1 :(得分:0)
我不确定为什么有人要这么做,但是这种逻辑应该起作用。
boolean flag = true;
for (){(flag && if (abb.iscurrentlyy()) || abb.islately()) {
flag = false; // this will execute everytime
if (reqFiles != null) {
for (int i = 0; i < reqFiles.length; i++) {
Future<ExecResult> lcukv = executor.submit(worker);
executionFutureException.add(lcukv);
}
}
}else{ // do if condition is false.
}}