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?
|
|||
|
|
|
It seems to convey the meaning of the loop most effectively. |
|||
|
|
|
|
|
|||
|
|
|
|
That's how I roll. |
|||
|
|
|
|
PLEASE DO COME FROM (23) |
||||||
|
|
|
I prefer |
||||
|
|
|
I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:
|
|||
|
|
|
Infinite tail-recursion ;) It's somewhat compiler-dependant... |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
I usually use Some languages offer a |
|||
|
|
I use I learned the |
|||
|
|
|
|
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). |
|||
|
|
|
for (;;) is what I usually see. |
|||
|
|
|
|
Filler text. |
|||
|
|
|
|
offtopic: if you think about what you are trying to express, you usually won't need an infinite loop. |
||||
|
|
|
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. |
|||
|
|
|
|
I usually use Differentiates infinite loops from actual conditionals, you see. |
|||
|
|
|
|
I now prefer the " Kind of like how Stroustrup made the new casts in C++ purposefully ugly - so they stick out. |
|||
|
|