codecamp

D编程 continue statement

D编程语言中的CONTINUE语句的工作方式有点像break语句,但是,Continue并不强制终止,而是强制进行循环的下一次迭代,跳过其间代码。

continue - 语法

D中CONTINUE语句语法如下所示:-

continue;

continue - 流程图

D continue statement

continue - 示例

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编程 break statement
D编程 条件判断
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }