設定

Choose language

continue

continue
Used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration.

Usage



for(i=0,i<10,i++)
{
p1=apply(p1,10,0)
if(p1.x>100)
break
else
continue
}

前の記事

no (variable or object)

カテゴリに戻る

プログラム

次の記事