vote up 11 vote down star

I've seen this on occasion in books I've read. But I've found no explanation.

for(;;)
{
  // do some stuff
}

Is it kinda like "while(true)"? Basically an endless loop for polling or something? Basically something you'd do until you intensionally break the loop?

flag

29% accept rate
5  
7 answers in the first minute after posting the question! – Arno Setagaya Jun 11 at 17:25
Functionally it's the same. I prefer while(true) because for loops really have that extra functionality for iterating, beyond just testing the conditional. Some people prefer for(;;) because they read it as forever. – justinhj Jun 11 at 17:27
1  
In C# the 4 characters in "(;;)" actually convert to "ever" - thus forever :) – HBoss Jun 11 at 17:29
6  
@justinhj: Languages like C don't have built-in boolean primitives, so some people prefer for(;;) over while(1). – Andrew Coleson Jun 11 at 17:49
you'd think at least one of the 14 nearly identical answers would be accepted by now... – matt b Jun 11 at 18:11
show 3 more comments

17 Answers

vote up 40 vote down check

Is it kinda like "while(true)"?

Yes. It loops forever.


Also note the comment by Andrew Coleson:

Languages like C don't have built-in boolean primitives, so some people prefer for(;;) over while(1)

link|flag
1  
I don't get why this got 22 votes, with other similar answers. – Dmitri Farkov Jun 11 at 17:50
4  
It was right, and it was first. It happens. I didn't earn any rep for it- was already capped today. – Joel Coehoorn Jun 11 at 17:54
7  
You know, I also don't get why this got so many votes; I think there's a "fame effect", that people upvote answers over other answers that are very similar when a user has a really high rep. – McWafflestix Jun 11 at 18:15
2  
Maybe, but more likely it's an easy question and so everybody checks it, and this answer was easily verifiable and already at the top of the list. Trust me when I say everything I write doesn't get voted up like this. – Joel Coehoorn Jun 11 at 18:55
1  
Btw, even in languages that do have boolean primitives, for(;;) may still be preferable over while(true). There is less chance of it being a typo, so it is more explicit about being intended to be an infinite loop. And a more practical reason is that some compilers may emit warnings for while(true). :) – jalf Jun 11 at 20:59
show 6 more comments
vote up 19 vote down

Yes.

In a for if nothing is provided:

  • The initialisation does nothing.
  • The condition is always true
  • The count statement does nothing

It is equivalent to while(true).

link|flag
4  
Or is it that the condition is never false? – Even Mien Jun 11 at 17:27
@theOtherScott, I think you're right. – Pim Jager Jun 11 at 17:28
vote up 17 vote down

You are correct. This is a common C# idiom for an endless loop.

link|flag
vote up 13 vote down

Correct. Note that the braces of a for loop contain three parts:

  1. Initialization code
  2. A condition for continuing the loop
  3. Something that gets executed for each loop iteration

With for(;;), all of these are empty, so there is nothing done to initialize the loop, there is no condition to keep it running (i.e. it will run indefinitely) and nothing that gets executed for each iteration except the loop's content.

link|flag
vote up 12 vote down

Yes, It is an infinite loop.

link|flag
vote up 10 vote down

Yes, it's an endless loop, just like while(true).

It's the slightly preferred convention, probably because it's shorter. There's no efficiency difference at all.

link|flag
vote up 10 vote down

If I recall correctly it's use over "while(true)", is it more resembles "for(;;) //ever"

link|flag
2  
+1 for the pun. – Liran Orevi Jun 11 at 17:29
vote up 8 vote down

Loop forever.

link|flag
vote up 8 vote down

Yes, it's an infinite loop. Same idea/effect as doing while(true) { ... }

link|flag
vote up 8 vote down

Take a look at a for loop.

for ( initialization ; condition ; increment  )

1) initialization - set a counter variable here
2) condition - keep looping until the counter variable meets the condition
3) increment - increment the counter

If there is no condition, a loop will go on forever. If it does such, then there is no need for a counter. Therefore

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

Inifinite loop like saying

while (0<1)
link|flag
"while(1)" won't compile in C#. while expects a bool, there is no implicit cast from int to bool. – unknown (google) Jun 11 at 17:35
you're right, you would have to cast it yourself, but it definitely works in C++, but I changed it for a better example – TStamper Jun 11 at 17:46
What if i was ≥ 2 to start with? A better example would be something like "while(3 < 4)". – ShreevatsaR Jun 11 at 17:49
@ShreevatsaR- that is why I initialized in comments that i=0, but that example you said would work also, actually I like the way it looks better,easier on the eyes – TStamper Jun 11 at 17:53
vote up 5 vote down

To be precise, any for loop without anything between the semicolons will loop forever (until terminated by some other means), because it has no defined invariant.

link|flag
vote up 3 vote down

It doesn't have an end condition, so it will loop forever until it find a break, as you already guessed.

link|flag
vote up 3 vote down

I might also add that it looks like 2 smiley faces winking at you

for (; ;)

maybe that's why some people like to use it.

link|flag
vote up 2 vote down

Yes, it loops forever. But the reason why you should use

for(;;)

instead of

while(true)

is that

while(true)

will give you a compiler warning "conditional expression constant", while the for-loop does not. At least you'll get such a compiler warning in the highest warning level.

link|flag
vote up 1 vote down

Often used in embedded programming.

-setup interrupts and timers. -then loop forever.

When an interrupt or timer occurs that will be handled.

link|flag
vote up 0 vote down

Yes! .

link|flag

Your Answer

Get an OpenID
or

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