在这组语句中:
if(robot1Count < 12) {
robot1Count++;
}
else if(robot1Count < 24) {
robot1Count++;
}
else if(robot1Count < 36) {
robot1Count++;
}
else if(robot1Count < 48) {
robot1Count++;
}
else {
robot1Count = 0;
}
想象一下这是一个无限循环,这个循环会不会从 0 遍历到 48,变成 0。我想知道的是,如果第一个块被执行,后面的所有块会被忽略吗?或者我应该将第二个更改为 else if(robot1Count < 24 && robot1Count >= 12) ?或者那不重要?