While 循环

在 Dart 中允许循环并执行 while 循环:

while(peopleAreClapping()) {
  playSongs();
}

和:

do {
  processRequest();
} while(stillRunning());

可以使用 break 终止循环:

while (true) {
  if (shutDownRequested()) break;
  processIncomingRequests();
}

你可以使用 continue 跳过循环中的迭代:

for (var i = 0; i < bigNumber; i++) {
  if (i.isEven){
    continue;
  }
  doSomething();
}