vote up 3 vote down star
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?

  • while (true) { }
  • do { } while (true);
  • for (;;) { }
  • label: ... goto label;
flag
Related question: stackoverflow.com/questions/224204/… – CesarB Oct 22 '08 at 2:06

18 Answers

vote up 31 vote down
while(true) {}

It seems to convey the meaning of the loop most effectively.

link|flag
vote up 14 vote down
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 */ 
}
link|flag
vote up 6 vote down
while(1)
{
//do it 
}

That's how I roll.

link|flag
vote up 5 vote down

PLEASE DO COME FROM (23)

link|flag
Hate speech, spam or abuse. How is this post any of these??? – paxdiablo Oct 22 '08 at 2:49
This is probably INTERCAL. – CesarB Oct 22 '08 at 3:28
That makes it possibly all three! – 1800 INFORMATION Oct 22 '08 at 4:12
vote up 3 vote down

I prefer while(1) or while(true) -- it's the clearest. do { } while(true) seems like needless obfuscation. Likewise, for(;;) can be confusing to people that have never seen it before, whereas while(true) is very intuitive. And there's absolutely no reason to do label: ... goto label;, it's just more confusing.

link|flag
'while (true)' could be confusing as 'for (;;)' if you think about it too long. Under what circumstances does the while exit? Maybe a '#define forever while(true)' would give us a more English keyword. – paxdiablo Oct 22 '08 at 1:29
My thoughts exactly, Adam. for (;;) is cool in a dirty C kind of way, but I wouldn't bring it out in public. – ojrac Oct 22 '08 at 1:32
vote up 3 vote down

I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:

void main()
{
  while(1) // test.cpp(5) : warning C4127: conditional expression is constant
  {
  }

  for(;;)
  {
  }
}
link|flag
I like that it complains - gives a cue that, yes, it is indeed an infinite loop. – Paul Nathan Oct 26 '08 at 20:31
vote up 3 vote down

Infinite tail-recursion ;)

It's somewhat compiler-dependant...

link|flag
vote up 3 vote down
#define forever for(;;)

forever {
    /*stuff*/
}
link|flag
vote up 2 vote down
10 some l33t code
20 goto 10
link|flag
vote up 2 vote down

I usually use for(;;) { } which I always think of as "for-ever".

Some languages offer a repeat { } construct which will natively loop forever. I find the for(;;) { } construct visually the most similar to this because it is so different from the normal for() construct. This is an important attribute for an infinite loop that while(1) { } doesn't really have.

link|flag
Which languages have a repeat keyword? – epotter Oct 22 '08 at 2:06
Dunno, but Perl 6 has loop { } for the same idea. – ephemient Oct 22 '08 at 2:19
Icon, Logo and Rexx are the first that come to mind. There are others. – staticsan Oct 27 '08 at 5:32
vote up 2 vote down

I use for (;;) in C-style languages and while true in languages that don't support that construct.

I learned the for (;;) method in K&R and it has always felt like idiomatic C to me.

link|flag
vote up 1 vote down

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).

link|flag
If other people are confused by that syntax, they need to learn the programming language better. It's hard to imagine someone being caught off-guard by something in the core language syntax... – ephemient Oct 22 '08 at 2:21
vote up 1 vote down

for (;;) is what I usually see.

link|flag
vote up 1 vote down
for(;;);

Filler text.

link|flag
vote up 0 vote down

offtopic: if you think about what you are trying to express, you usually won't need an infinite loop.

link|flag
Not necessarily. I've run across many cases where an infinite loop (with or without a break) is the cleanest way to express something. – Head Geek Oct 22 '08 at 1:41
Ya, I have observed the same thing. I pop in an infinite loop, and morph the code to meet the unit test. Before I can blink, I see that it can be turned into a normal loop construct. – EvilTeach Dec 5 '08 at 2:34
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I usually use while() {}, but after learning that for(;;) {} isn't some sort of crazy invalid syntax, I'll be sure to use the more unique option.

Differentiates infinite loops from actual conditionals, you see.

link|flag
vote up 0 vote down

I now prefer the "for (;;)" idiom because it seems to 'stick out' more. I used to use the "while (true)" idiom because I thought it expressed intent better, but I've switched over because I think the "for (;;)" idiom is well known enough to adequately express intent as well as I believe it's better by being more visible.

Kind of like how Stroustrup made the new casts in C++ purposefully ugly - so they stick out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.