ループの実行を中断しの先頭に処理を移す.
continue
なし
処理の実行を中断して,while 文や do-while 文の終了を判断する条件式に戻る. for 文の場合は,実行を中断して for 文の 3 式目に定義されている初期値 の再設定に処理を移し,その後,終了を判断する条件式に戻る.
% for( i=0; i<100; i++ ) { % ...... statement1 ..... % if ( data!=0.0 ) { % continue; /* bypass the rest of the statements */ % } % ...... statement2 ..... % } %
while, do-while, for, break