Infinite loops - top or bottom? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:03:47Z http://stackoverflow.com/feeds/question/224138 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom 3 Infinite loops - top or bottom? CesarB 2008-10-22T01:16:19Z 2009-11-20T18:16:06Z <p>In the spirit of questions like <a href="http://stackoverflow.com/questions/224059/do-your-loops-test-at-the-top-or-bottom">Do your loops test at the top or bottom?</a>:</p> <p>Which style do you use for an <em>infinite</em> loop, and why?</p> <ul> <li>while (true) { }</li> <li>do { } while (true);</li> <li>for (;;) { }</li> <li>label: ... goto label;</li> </ul> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224142#224142 31 Answer by JPrescottSanders for Infinite loops - top or bottom? JPrescottSanders 2008-10-22T01:18:22Z 2008-10-22T01:28:09Z <pre><code>while(true) {} </code></pre> <p>It seems to convey the meaning of the loop most effectively.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224144#224144 7 Answer by Paul Nathan for Infinite loops - top or bottom? Paul Nathan 2008-10-22T01:19:28Z 2008-10-22T01:19:28Z <pre><code>while(1) { //do it } </code></pre> <p>That's how I roll.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224146#224146 3 Answer by Adam Rosenfield for Infinite loops - top or bottom? Adam Rosenfield 2008-10-22T01:19:48Z 2008-10-22T01:19:48Z <p>I prefer <code>while(1)</code> or <code>while(true)</code> -- it's the clearest. <code>do { } while(true)</code> seems like needless obfuscation. Likewise, <code>for(;;)</code> can be confusing to people that have never seen it before, whereas <code>while(true)</code> is very intuitive. And there's absolutely no reason to do <code>label: ... goto label;</code>, it's just more confusing.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224150#224150 1 Answer by Ignacio Vazquez-Abrams for Infinite loops - top or bottom? Ignacio Vazquez-Abrams 2008-10-22T01:20:28Z 2008-10-22T01:20:28Z <p>When writing code for myself I use for(;;). Other people tend to be confused by its syntax and so for code that other people must see/use, I use while(true).</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224161#224161 5 Answer by Harleqin for Infinite loops - top or bottom? Harleqin 2008-10-22T01:26:52Z 2008-10-22T01:26:52Z <p>PLEASE DO COME FROM (23)</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224164#224164 2 Answer by Mark Lubin for Infinite loops - top or bottom? Mark Lubin 2008-10-22T01:30:01Z 2008-10-22T01:30:01Z <pre><code>10 some l33t code 20 goto 10 </code></pre> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224166#224166 0 Answer by Dustin Getz for Infinite loops - top or bottom? Dustin Getz 2008-10-22T01:33:33Z 2008-10-22T01:33:33Z <p>offtopic: if you think about what you are trying to express, you usually won't need an infinite loop.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224172#224172 17 Answer by EvilTeach for Infinite loops - top or bottom? EvilTeach 2008-10-22T01:36:19Z 2008-10-22T01:36:19Z <pre><code>for (;;) { /* No warnings are generated about constant value in the loop conditional plus it is easy to change when you realize you do need limits */ } </code></pre> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224175#224175 3 Answer by jussij for Infinite loops - top or bottom? jussij 2008-10-22T01:37:42Z 2008-10-22T01:53:10Z <p>I like to use the <strong>for(;;)</strong> approach because the <strong>MSVC++</strong> compiler <em>complains</em> about while loop approach:</p> <pre><code>void main() { while(1) // test.cpp(5) : warning C4127: conditional expression is constant { } for(;;) { } } </code></pre> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224195#224195 1 Answer by Moishe for Infinite loops - top or bottom? Moishe 2008-10-22T01:53:30Z 2008-10-22T01:53:30Z <p>for (;;) is what I usually see.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224196#224196 0 Answer by Michael McCarty for Infinite loops - top or bottom? Michael McCarty 2008-10-22T01:54:09Z 2008-10-22T01:54:09Z <p>Infinite loops are a bad idea, but in practice that doesn't always hold up.</p> <p>I prefer while(1) { } but make sure something within the loop can cause it to break out.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224197#224197 2 Answer by staticsan for Infinite loops - top or bottom? staticsan 2008-10-22T01:54:17Z 2008-10-22T01:54:17Z <p>I usually use <code>for(;;) { }</code> which I always think of as "for-ever".</p> <p>Some languages offer a <code>repeat { }</code> construct which will natively loop forever. I find the <code>for(;;) { }</code> construct visually the most similar to this because it is so different from the normal <code>for()</code> construct. This is an important attribute for an infinite loop that <code>while(1) { }</code> doesn't really have.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224205#224205 1 Answer by orlandu63 for Infinite loops - top or bottom? orlandu63 2008-10-22T01:56:23Z 2008-10-22T01:56:23Z <pre><code>for(;;); </code></pre> <p>Filler text.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224208#224208 3 Answer by Menkboy for Infinite loops - top or bottom? Menkboy 2008-10-22T01:58:08Z 2008-10-22T01:58:08Z <p>Infinite tail-recursion ;)</p> <p>It's somewhat compiler-dependant...</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224216#224216 2 Answer by Ferruccio for Infinite loops - top or bottom? Ferruccio 2008-10-22T02:02:47Z 2008-10-22T02:02:47Z <p>I use <code>for (;;)</code> in C-style languages and <code>while true</code> in languages that don't support that construct.</p> <p>I learned the <code>for (;;)</code> method in K&amp;R and it has always felt like idiomatic C to me.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224257#224257 0 Answer by SubIgnition for Infinite loops - top or bottom? SubIgnition 2008-10-22T02:22:23Z 2008-10-22T02:22:23Z <p>I usually use <code>while() {}</code>, but after learning that <code>for(;;) {}</code> isn't some sort of crazy invalid syntax, I'll be sure to use the more unique option.</p> <p>Differentiates infinite loops from actual conditionals, you see.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/224736#224736 3 Answer by dsm for Infinite loops - top or bottom? dsm 2008-10-22T07:18:17Z 2008-10-22T07:18:17Z <pre><code>#define forever for(;;) forever { /*stuff*/ } </code></pre> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/226011#226011 0 Answer by Michael Burr for Infinite loops - top or bottom? Michael Burr 2008-10-22T14:35:53Z 2008-10-22T14:35:53Z <p>I now prefer the "<code>for (;;)</code>" idiom because it seems to 'stick out' more. I used to use the "<code>while (true)</code>" idiom because I thought it expressed intent better, but I've switched over because I think the "<code>for (;;)</code>" idiom is well known enough to adequately express intent as well as I believe it's better by being more visible.</p> <p>Kind of like how Stroustrup made the new casts in C++ purposefully ugly - so they stick out.</p> http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom/1772337#1772337 0 Answer by Dan Moulding for Infinite loops - top or bottom? Dan Moulding 2009-11-20T18:16:06Z 2009-11-20T18:16:06Z <p>Let the flaming begin...</p> <p>If the loop is a <em>true</em> infinite loop (i.e. there is no break condition -- only an external event can terminate the thread's/process' execution), then I actually prefer the label and <code>goto</code>. Here's why:</p> <p>First, the use of <code>while</code>, <code>for</code>, and <code>do ... while</code>, all imply that the loop might terminate. Even if the terminating condition is never achievable, the <em>syntactical meaning</em> of these constructs is that there <strong>is</strong> some termination condition.</p> <p>Second, using a loop construct introduces an extra level of indentation. I hate indentation that's not necessary. It wastes valuable columnar real-estate.</p> <p>Third, the only <em>true</em> infinite loop is the one that <em>unconditionally</em> jumps back to the beginning of the loop. Only <code>goto</code> fits that purpose exactly.</p> <p>The truth is I don't really care that much about it. They all get the job done and most will result in the exact same assembly instructions anyway. <strong>However</strong>, the assembly that's generated will in all probability be an unconditional jump (if you're optimizer is worth a damn), which maps directly to which C construct, kids? That's right... your old friend <code>goto</code>.</p>