Would any one please explain this instruction for me: for (;;)

I have encountered several kinds of these mark (like in ajax code of facebook and in concurrent stuff of Java).

link|improve this question

71% accept rate
1  
#define EVER ;; for(EVER) //... – Andrew Aug 21 '10 at 17:21
feedback

6 Answers

up vote 19 down vote accepted

An infinite loop.

Each of the three parts of a for loop (for(x, y, z)) is optional.

So you can do this:

int i = 0;
for (; i < 20; ++i)

and it's perfectly valid, or

for (int i = 0; i < 20;) { ++i; }

or

for (int i = 0; ; ++i) { if (i < 20) { break; } }

and they're all valid.

You can also omit all three parts., with for(;;). Then you have a loop that:

  • does no initialization (the first part)
  • has no condition for stopping (the middle part)
  • does nothing after each iteration (the last part)

so basically an endless loop. It just does what it says in the loop body, again and again

link|improve this answer
See the Java Language Specification §14.14.1.2 java.sun.com/docs/books/jls/third_edition/html/… for reference: "If the Expression is not present, or it is present and the value resulting from its evaluation (including any possible unboxing) is true, then the contained Statement is executed. " – Adam Rosenfield May 22 '10 at 15:08
8  
This answer pretty much proves the awesomeness of the "No question is too simple" policy. :) – Bill the Lizard May 22 '10 at 15:34
feedback

It's an endless loop. For the specificion of the for statement, see here.

link|improve this answer
feedback

That's an infinite loop, similar to

while(true)
{
    ...
}
link|improve this answer
feedback

Its an infinite loop, seeing as the (non-existent) exit condition will never be false.

Any for loop without an exit condition will be infinite:

for (int x=0; ; x++) { }

Exactly the same as while (true), although a little less readable IMHO.

link|improve this answer
feedback

That's indeed an infinite loop. But in Java you should really prefer while (true) over for (;;) since that's better readable (which you probably encounter yourself now). The compiler will optimize it anyway. In JavaScript there's no means of a compiler and every byte over HTTP counts, that's the reason why for (;;) is preferred over there since it saves a few characters (bytes).

link|improve this answer
+1 for readability of while (true) – whiskeysierra May 22 '10 at 21:58
I find for(;;) to be more readable. – jalf May 23 '10 at 9:00
feedback

The syntax for a for loop is

for (init-stmt; condition; next-stmt) {

}

So it is simply a for loop with no initial statement, next statement or condition. The absence of the exiting condition makes it infinite.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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