Continue keyword in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T16:18:47Zhttp://stackoverflow.com/feeds/question/389741http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/389741/continue-keyword-in-java4Continue keyword in Javafaceless1_142008-12-23T18:52:05Z2009-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#38974420Answer by Diomidis Spinellis for Continue keyword in JavaDiomidis Spinellis2008-12-23T18:53:30Z2008-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#38974813Answer by Dustin for Continue keyword in JavaDustin2008-12-23T18:54:47Z2008-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#3897552Answer by m3rLinEz for Continue keyword in Javam3rLinEz2008-12-23T18:56:53Z2008-12-23T18:56:53Z<p>Let's see an example</p>
<pre><code>int sum = 0;
for(int i = 1; i <= 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#3897641Answer by Vineet for Continue keyword in JavaVineet2008-12-23T19:00:30Z2008-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 < 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#3903460Answer by Tom Dibble for Continue keyword in JavaTom Dibble2008-12-23T23:18:08Z2008-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#4369210Answer by blabla999 for Continue keyword in Javablabla9992009-01-12T20:33:22Z2009-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>