If my understanding is correct, they do exactly the same thing. Why would anyone use for the "for" variant? Is it just taste?
Edit: I suppose I was also thinking of for (;;).
|
|
|||
|
|
|
is often used to prevent a compiler warning:
or
usually throws a compiler warning about a conditional expression being constant (at least at the highest warning level). |
||
|
|
|
|
Yes, it is just taste. |
||
|
|
|
I've never seen |
||||||||||
|
|
|
It's in case they plan to use a real for() loop later. If you see for(;true;), it's probably code meant to be debugged. |
||
|
|
|
|
Some compilers (with warnings turned all the way up) will complain that For this reason I prefer the use of |
||
|
|
|
|
Not an answer but a note: Sometimes remembering that for(;x;) is identical to while(x) (In other words, just saying "while" as I examine the center expression of an if conditional) helps me analyze nasty for statements... Sometimes it also comes in handy to remember that
is almost (see comments) the same as
I know it's obvious, but being actively aware of this relationship really helps you to quickly convert between one form and the other to clarify confusing code. |
||||||||
|
|
|
An optimizing compiler should generate the same assembly for both of them -- an infinite loop. |
||
|
|
|
The compiler warning has already been discussed, so I'll approach it from a semantics stand-point. I use while(TRUE) rather than for(;;) because in my mind, while(TRUE) sounds like it makes more sense than for(;;). I read while(TRUE) as "while TRUE is always TRUE". Personally, this is an improvement in the readability of code. So, Zeus forbid I don't document my code (this -NEVER- happens, of course) it stays just a little bit more readable than the alternative. But, overall, this is such a nit-picky thing that it comes down to personal preference 99% of the time. |
||
|
|