show/hide this revision's text 4 Mention update behavior for for; code formatting

Continue

A continue statement without a label will re-execute from the condition the innermost while, or do, or loop, and from the update expression the innermost for loop. It is often used to early-terminate a loop's processing and thereby avoid deeply-nested if statements. In the following example continue will get the next line, without processing the following statement in the loop.

while (getNext(line)) {
  if (line.isEmpty() || line.isComment())
    continue;
  // More code here
}

With a label continue will execute in the same way the correspondingly labeled loop. This can be used to escape deeply-nested loops, or simply for clarity. If you're truly perverse you can also use it to simulate a limited form of goto. In the following example the continue will re-execute the for (;;) loop.

aLoopName: for (;;) {
  // ...
  while (someCondition)
  // ...
    if (otherCondition)
      continue aLoopName;

Sometimes continue is also used as a placeholder in order to make an empty loop body clearer.

for (count = 0; foo.morData()foo.moreData(); count++)
  continue;

The same statement without a label also exists in C and C++. In Perl it's named "next".next.

show/hide this revision's text 3 Add another example

Continue without a label will execute re-execute from the condition the innermost while, do, or for loop. It is often used to early-terminate a loop's processing and thereby avoid deeply-nested if statements. In the following example continue will get the next line, without processing the following statement in the loop.

while (getNext(line)) {
  if (line.isEmpty() || line.isComment())
    continue;
  // More code here
}

With a label it continue will execute in the same way the corresponding correspondingly labeled loop. This can be used to escape deeply-nested loops, or simply for clarity. If you're truly perverse you can also use it to simulate a limited form of goto. In the following example the continue will re-execute the for (;;) loop.

aLoopName: for (;;) {
  // ...
  while (someCondition)
  // ...
    if (otherCondition)
      continue aLoopName;

Sometimes it's continue is also used as a placeholder in order to make an empty loop body clearer.

for (count = 0; foo.morData(); count++)
  continue;

The same statement without a label also exists in C and C++. In Perl it's named "next".

show/hide this revision's text 2 Add examples

Continue without a label will execute from th the condition the innermost while, do, or for loop. With a label it will execute in the same way the corresponding loop. It often used to early-terminate a loop's processing and thereby avoid deeply-nested if statements. In the following example continue will get the next line, without processing the following statement in the loop.

while (getNext(line)) {
  if (line.isEmpty() || line.isComment())
    continue;
  // More code here
}

With a label it will execute in the same way the corresponding loop.

Sometimes it's also used as a placeholder in order to make an empty loop body clearer.

for (count = 0; foo.morData(); count++)
  continue;
show/hide this revision's text 1