Einstellungen

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
}

Vorheriger Artikel

no (variable or object)

Zurück zum Kapitel

Programmierung

Nächster Artikel