设置

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)

返回类别

编程

下一篇文章