Why use infinite loops? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:26:49Z http://stackoverflow.com/feeds/question/224204 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/224204/why-use-infinite-loops 4 Why use infinite loops? Moishe 2008-10-22T01:56:18Z 2009-07-26T09:34:22Z <p>Another poster asked about <a href="http://stackoverflow.com/questions/224138/infinite-loops-top-or-bottom">preferred syntax for infinite loops</a>.</p> <p>A follow-up question: <i>Why</i> do you use infinite loops in your code? I typically see a construct like this:</p> <pre><code>for (;;) { int scoped_variable = getSomeValue(); if (scoped_variable == some_value) { break; } } </code></pre> <p>Which lets you get around not being able to see the value of scoped_variable in the <code>for</code> or <code>while</code> clause. What are some other uses for "infinite" loops?</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224209#224209 8 Answer by AShelly for Why use infinite loops? AShelly 2008-10-22T01:58:19Z 2008-10-22T01:58:19Z <p>I use an infinite loop for the body of my embedded control code, since it is designed to run forever once it is started.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224213#224213 5 Answer by Ignacio Vazquez-Abrams for Why use infinite loops? Ignacio Vazquez-Abrams 2008-10-22T02:02:07Z 2008-10-22T02:02:07Z <p>Finite state machines. They're not supposed to end until you reach an end state, at which point you break or return.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224215#224215 19 Answer by Tony Meyer for Why use infinite loops? Tony Meyer 2008-10-22T02:02:31Z 2008-10-22T02:02:31Z <p>A loop like:</p> <pre><code>while (true) { // do something if (something else) break; // do more } </code></pre> <p>lets you break out of the loop in the middle, rather than at the start (while/for) or end (do-while).</p> <p>If you've got a complex condition, you might also want to use this style to make the code clearer.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224217#224217 0 Answer by Fry for Why use infinite loops? Fry 2008-10-22T02:03:12Z 2008-10-22T02:03:12Z <p>I used to use them when waiting for multiple threads to complete in c#, but now I use the ThreadPool class.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224218#224218 1 Answer by Greg Beech for Why use infinite loops? Greg Beech 2008-10-22T02:03:21Z 2008-10-22T02:03:21Z <p>One example is in a message pump type scenario, where you want to loop forever processing any messages that come in until told to stop. Another is if you want to take a periodic action then you might write an infinite loop with a sleep in it (though it may be better to use some form of timer for this).</p> <p>There may be some other places where the loop has to perform a certain amount of work to determine whether it should exit, and it may be cleaner just to use <code>break</code> when this condition is true rather than set some external flag to indicate the loop should exit.</p> <p>Generally though I think it's better practice to put your exit condition in the loop statement if possible, rather than to make it infinite and exit the loop using a <code>break</code> statement, because the exit condition of the loop is more obvious.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224219#224219 4 Answer by Menkboy for Why use infinite loops? Menkboy 2008-10-22T02:03:24Z 2008-10-22T02:10:45Z <pre><code>while( 1 ) { game-&gt;update(); game-&gt;render(); } </code></pre> <p><strong>Edit:</strong> That is, my app is fundamentally based around an infinite loop, and I can't be bothered to refactor everything just to have the aesthetic purity of always terminating by falling off the end of main().</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224228#224228 2 Answer by staticsan for Why use infinite loops? staticsan 2008-10-22T02:08:08Z 2008-10-24T03:50:44Z <p>That's an incomplete example because it can be refactored to be an end-test loop with no loss of clarity, function or performance.</p> <pre><code>int scoped_variable; do { scoped_variable = getSomeValue(); } while (scoped_variable != some_value); </code></pre> <p>Infinite loops are most often used when the loop instance <em>doesn't</em> have the termination test at the top or the bottom, in the simplest case. This tends to happen when there is two parts to the loop: code that must execute each time, and code that must only execute between each iteration. This tends to happen in languages like C when doing things like reading from a file or processing a database resultset where a lot has to be done explicitly. Most languages with newer paradigms can structure such code actually into the test.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224237#224237 0 Answer by Loren Pechtel for Why use infinite loops? Loren Pechtel 2008-10-22T02:15:00Z 2008-10-22T02:15:00Z <p>Other than embedded systems situations infinite loops always really are:</p> <pre><code>Repeat Something Until Exit_Condition; </code></pre> <p>But sometimes Exit_Condition isn't something that can actually be evaluated at the end of the loop. You could always set a flag, use that flag to skip the rest of the loop and then test it at the end but that means you are testing it at least twice (the code is slightly slower) and personally I find it less clear.</p> <p>There are times when trading clarity for speed makes sense but something that gives neither clarity nor speed just to be technically correct? Sounds like a bad idea to me. Any competent programmer knows that while (true) means the termination condition is somewhere inside the loop.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224242#224242 1 Answer by Draemon for Why use infinite loops? Draemon 2008-10-22T02:16:53Z 2008-10-22T02:16:53Z <p>There are other questions relating to if/when it's ok to use <code>break</code> in a loop. Let's assume that we agree that it's sometimes ok. In those circumstances (hopefully rare) I would use an infinite loop if there are a number of terminating conditions and no identifiable "primary" terminating condition.</p> <p>It avoids a long series of disjunctions (or's) and also draws the reader's attention to the fact that there may (almost certainly will) be breaks in the loop.</p> <p>Ultimately it's a matter of taste.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224316#224316 1 Answer by Chris Kloberdanz for Why use infinite loops? Chris Kloberdanz 2008-10-22T02:47:26Z 2008-10-22T02:47:26Z <p>I use them to write Linux daemons / services that loop until kill / other termination signals are received.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224914#224914 0 Answer by orj for Why use infinite loops? orj 2008-10-22T08:43:47Z 2008-10-22T08:43:47Z <p>Infinite loops are useful mostly in daemon/service processes or the main loop in a game. You can even get cute with them, eg:</p> <pre><code>const bool heatDeathOfTheUniverse = false; do { // stuff } while(!heatDeathOfTheUniverse); </code></pre> <p>They should <strong>not</strong> be used to "wait" for things like threads as was suggested by <a href="http://stackoverflow.com/questions/224204/why-use-infinite-loops#224217">Fry</a>. You can use the Join method of a thread object for that.</p> <p>However, if you're in a situation where your tech lead says, "infinite loops are verboten &amp; so are multiple method/function returns &amp; breaks" you can also do stuff like this:</p> <pre><code>bool done = false; while(!done) { if(done = AreWeDone()) continue; // continue jumps back to start of the loop } </code></pre> <p>Of course if you tech lead is forcing you to do such things you should start looking for a new job.</p> <p>For more details on the continue keyword see <a href="http://msdn.microsoft.com/en-us/library/6e3dc2z3(VS.80).aspx" rel="nofollow">this MSDN</a> article.</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/224927#224927 0 Answer by Gary Willoughby for Why use infinite loops? Gary Willoughby 2008-10-22T08:50:04Z 2008-10-22T08:50:04Z <p>Nearly all apps use an <em>infinite</em> <strong>Main loop</strong>. ;)</p> http://stackoverflow.com/questions/224204/why-use-infinite-loops/1184149#1184149 0 Answer by Koning Baard XIV for Why use infinite loops? Koning Baard XIV 2009-07-26T09:34:22Z 2009-07-26T09:34:22Z <p>Webservers use an infinite while loop:</p> <pre><code>while(true) { //Do something like respond to requests } </code></pre> <p>They don't have to end unless you close your webserver application.</p>