In the spirit of questions like Do your loops test at the top or bottom?:
Which style do you use for an infinite loop, and why?
- while (true) { }
- do { } while (true);
- for (;;) { }
- label: ... goto label;
|
1
|
In the spirit of questions like Do your loops test at the top or bottom?: Which style do you use for an infinite loop, and why?
|
|||
|
|
|
Let the flaming begin... If the loop is a true 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 First, the use of Second, using a loop construct introduces an extra level of indentation. I hate indentation that's not necessary. It wastes valuable columnar real-estate. Third, the only true infinite loop is the one that unconditionally jumps back to the beginning of the loop. Only 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. However, 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 |
|||
|
|
|
|
I now prefer the " Kind of like how Stroustrup made the new casts in C++ purposefully ugly - so they stick out. |
|||
|
|
|
|
|
|||
|
|
|
|
I usually use Differentiates infinite loops from actual conditionals, you see. |
|||
|
|
|
|
I use I learned the |
|||
|
|
|
|
Infinite tail-recursion ;) It's somewhat compiler-dependant... |
|||
|
|
|
|
Filler text. |
|||
|
|
|
|
I usually use Some languages offer a |
|||
|
|
Infinite loops are a bad idea, but in practice that doesn't always hold up. I prefer while(1) { } but make sure something within the loop can cause it to break out. |
|||
|
|
|
|
for (;;) is what I usually see. |
|||
|
|
|
|
I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:
|
|||
|
|
|
|
|||
|
|
|
|
offtopic: if you think about what you are trying to express, you usually won't need an infinite loop. |
||||
|
|
|
|
|||
|
|
|
|
PLEASE DO COME FROM (23) |
||||||||
|
|
|
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). |
|||
|
|
|
I prefer |
||||
|
|
|
That's how I roll. |
|||
|
|
|
|
It seems to convey the meaning of the loop most effectively. |
|||
|
|