Continue keyword in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:18:47Z http://stackoverflow.com/feeds/question/389741 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/389741/continue-keyword-in-java 4 Continue keyword in Java faceless1_14 2008-12-23T18:52:05Z 2009-01-12T20:54:33Z <p>I saw this keyword for the first time and I was wondering if some one could explain to me what it does. The situation in which I saw the keyword was:</p> <pre><code>if(obj.isFlagSet()) ; else continue; </code></pre> <p>I can't seem to figure out what the continue is doing.</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/389744#389744 20 Answer by Diomidis Spinellis for Continue keyword in Java Diomidis Spinellis 2008-12-23T18:53:30Z 2008-12-23T22:50:38Z <p>A <code>continue</code> statement without a label will re-execute from the condition the innermost <code>while</code> or <code>do</code>, or loop, and from the update expression the innermost <code>for</code> loop. It is often used to early-terminate a loop's processing and thereby avoid deeply-nested <code>if</code> statements. In the following example <code>continue</code> will get the next line, without processing the following statement in the loop. </p> <pre><code>while (getNext(line)) { if (line.isEmpty() || line.isComment()) continue; // More code here } </code></pre> <p>With a label <code>continue</code> 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 <code>goto</code>. In the following example the <code>continue</code> will re-execute the for (;;) loop.</p> <pre><code>aLoopName: for (;;) { // ... while (someCondition) // ... if (otherCondition) continue aLoopName; </code></pre> <p>Sometimes <code>continue</code> is also used as a placeholder in order to make an empty loop body clearer.</p> <pre><code>for (count = 0; foo.moreData(); count++) continue; </code></pre> <p>The same statement without a label also exists in C and C++. In Perl it's named <code>next</code>.</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/389748#389748 13 Answer by Dustin for Continue keyword in Java Dustin 2008-12-23T18:54:47Z 2008-12-23T18:54:47Z <p>continue is kind of like goto. Are you familiar with break? It's easier to think about them in contrast:</p> <p><code>break</code> terminates the loop (jumps to the code below it)</p> <p><code>continue</code> terminates the rest of the processing of the code within the loop for the current iteration, but continues the loop.</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/389755#389755 2 Answer by m3rLinEz for Continue keyword in Java m3rLinEz 2008-12-23T18:56:53Z 2008-12-23T18:56:53Z <p>Let's see an example</p> <pre><code>int sum = 0; for(int i = 1; i &lt;= 100 ; i++){ if(i % 2 == 0) continue; sum += i; } </code></pre> <p>This would get the sum of only odd numbers from 1 to 100</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/389764#389764 1 Answer by Vineet for Continue keyword in Java Vineet 2008-12-23T19:00:30Z 2008-12-23T19:00:30Z <p>If you think of the body of a loop as a subroutine, "<code>continue</code>" is sort of like "<code>return</code>". The same keyword exists in C, and serves the same purpose. Here's a contrived example:</p> <pre><code>for(int i=0; i &lt; 10; ++i) { if (i % 2 == 0) { continue; } System.out.println(i); } </code></pre> <p>This will print out only the odd numbers.</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/390346#390346 0 Answer by Tom Dibble for Continue keyword in Java Tom Dibble 2008-12-23T23:18:08Z 2008-12-23T23:18:08Z <p>Generally, I see "continue" (and "break") as a warning that the code <em>might</em> use some refactoring, especially if the 'while' or 'for' loop declaration isn't immediately in sight. The same is true for 'return' in the middle of a method, but for a slightly different reason.</p> <p>As others have already said, "continue" moves along to the next iteration of the loop, while "break" moves out of the enclosing loop.</p> <p>These can be maintenance timebombs because there is no immediate link between the "continue"/"break" and the loop it is continuing/breaking other than context; add an inner loop or move the "guts" of the loop into a separate method and you have a hidden effect of the continue/break failing.</p> <p>IMHO, it's best to use them as a measure of last resort, and then to make sure their use is grouped together tightly at the start or end of the loop so that the next developer can see the "bounds" of the loop in one screen.</p> <p>"continue", "break", and "return" (other than the One True Return at the end of your method) all fall into the general category of "hidden GOTOs". They place loop and function control in unexpected places, which then eventually causes bugs.</p> http://stackoverflow.com/questions/389741/continue-keyword-in-java/436921#436921 0 Answer by blabla999 for Continue keyword in Java blabla999 2009-01-12T20:33:22Z 2009-01-12T20:54:33Z <p>As Tom already pointed out, it is our wellknown old wolf-friend, the GOTO in a sheep's clothing !</p> <p>Just kidding.</p>