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++; 
   }
}  

上面的代码打印 1 到 10 之间数字范围的 5 的第一个倍数。

如果发现某个数字可以被 5 整除,则 if 结构使用break 语句强制控件退出循环。成功执行上述代码后将显示以下输出。

The first multiple of 5 between 1 and 10 is: 5 
dart_programming_loops.htm