首页 > 建站教程 > dart >  Dart break正文

Dart break

break 语句用来作为控制了结构的。在循环中使用 break 会导致程序退出循环。以下是 break 语句的示例。

void main() {
 var i = 1;
 while(i<=10) {
    if (i % 5 == 0) {
       print("The first multiple of 5  between 1 and 10 is : ${i}");
       break ;    
       //exit the loop if the first multiple is found
    }
    i++;
 }
}
上一篇: Dart continue
下一篇: Dart do while