Looking through some old company code, I came across a for loop that looks like this:
for (;;) {
//Some stuff
}
I tried Google but couldn't find any answers. Did I fall asleep in a programming class or is this an unusual loop?
|
|
A
As you can see, there are four statements here -
Basically this is how the execution follows - first, when the loop is entered for the first time, the initialization statement is executed once. Then the conditional check is executed to see if it evaluated to true. If it is, then the the loop body is executed, otherwise the loop execution is finished. After that, the Increment statement is executed. Next, the conditional check is executed again, and if it evaluates to true, then again the loop body is executed, then incremental statement is executed, then again the conditional check....you get the picture. Now about your So you see, this is basically an infinite loop which has no initialization statement, whose conditional check will always evaluates to true, and which has no incremental statement. This is equivalent to -
which is another popular loop construct in java. When you use an infinite loop like this, it's important pay attention to the breaking condition as in most cases you can't let a loop to run indefinitely. To break out of these kinds of loops, you can use the
or
|
||||
|
|
|
This is the same as:
Basically, an alternate syntax for an infinite loop. |
|||||||||||
|
|
These are all infinite loops
|
|||
|
|
|
This loop has no guard and acts as a while(true) loop. It will loop infinitely until a break. |
|||||||||
|
|
It's an infinite loop. The initialization, condition, and increment statements are all optional, so without any of them, this will always loop again (unless a break is hit or some other construct interacts with it). Although I'm unsure about Java, this question explains how in .Net your empty |
|||
|
|
|
It's an infinite loop. Not exactly good coding because it isn't intuitive that is would actually compile or not throw a runtime error. Rewriting as |
|||||||
|