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).
|
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).
| |||||
feedback
|
|
An infinite loop. Each of the three parts of a for loop ( So you can do this:
and it's perfectly valid, or
or
and they're all valid. You can also omit all three parts., with
so basically an endless loop. It just does what it says in the loop body, again and again | |||||||
feedback
|
|
It's an endless loop. For the specificion of the | |||
|
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:
Exactly the same as | |||
|
feedback
|
|
That's indeed an infinite loop. But in Java you should really prefer | |||||
|
feedback
|
|
The syntax for a for loop is
So it is simply a for loop with no initial statement, next statement or condition. The absence of the exiting condition makes it infinite. | |||
|
feedback
|