Possible Duplicate:
while (1) Vs. for (;;) Is there a speed difference?
Hi,
Which is better,faster and more optimized way to implement infinite loop - for(;;) or while(1)? and why?
Hi, Which is better,faster and more optimized way to implement infinite loop - for(;;) or while(1)? and why?
| |||||||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
In any normal compiler, there should be absolutely no difference. For example, here's what
Note the You can also try with other compilers for fun, but it's best just stop worrying about it. OK, I just had to try with
| |||||
feedback
|
|
I prefer In terms of actual performance there should be no difference. The compiler will optimize away the test. I tried testing both to see which is faster but neither of them has completed yet. | |||||||||||||||||
feedback
|
|
I would argue neither is more optimized, as neither will accomplish the task of looping infinitely in any measurable amount of time. Is it really possible to reach infinity more or less efficiently? | |||||||||||||||||||
feedback
|
|
This is my opinion (no research done): When debugging code as I step through it, for for loops it makes me go to all three parts the first time, then two the rest of the iterations. However, the while loop only has one. Just a thought. | |||
|
feedback
|
|
In theory, a completely naive compiler could store the literal '1' in the binary (wasting space) and check to see if 1 == 0 every iteration (wasting time and more space). In reality, however, even with "no" optimizations, compilers will still reduce both to the same. They may also emit warnings because it could indicate a logical error. For instance, the argument of while could be defined somewhere else and you not realize it's constant. | |||
|
feedback
|