D 编程 - continue 语句



D 编程语言中的continue语句有点像break语句。然而,它不是强制终止,而是强制执行循环的下一个迭代,跳过中间的任何代码。

对于for循环,continue语句导致循环的条件测试和增量部分执行。对于whiledo...while循环,continue语句导致程序控制传递到条件测试。

语法

D 中continue语句的语法如下:

continue;

流程图

D continue statement

示例

import std.stdio;
 
int main () {
   /* local variable definition */
   int a = 10;

   /* do loop execution */
   do {
      if( a == 15) {
         /* skip the iteration */
         a = a + 1;
         continue;
      }
      writefln("value of a: %d", a);
      a++;
     
   } while( a < 20 );
 
   return 0;
}

编译并执行上述代码后,将产生以下结果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19
d_programming_loops.htm
广告