Syntactically I see that they loop indefinitely until a break statement is reached, but are they compiled to the same thing? Is the for slightly faster because it doesn't have a condition to check? Aside from code readability, is there even a difference?
|
Given this input:
...you get this output:
Remarkably similar, I would say (identical, even). |
|||||||||||||||||
|
|
In modern compilers, absolutely nothing. Historically, however, I prefer |
|||||||||||||||||||||
|
|
I haven't examined the output code, but there should be no difference whatsoever. Any decent compiler will do simple enough loop optimization to see that the condition is a constant expression, and thus doesn't need checking every iteration. If one is faster than the other, the C# compiler writers need something 'splained to them... |
|||
|
|
|
If I might, I'd suggest that you look at a somewhat different question. If you're using either of these often enough to care, you're probably structuring your code poorly. While there are things like embedded systems that really do run forever, loops in most normal code do not. Writing a loop that claims to run forever usually means you've hidden the exit condition for the loop somewhere inside, with some other control flow (e.g., That can and usually should be avoided. While there are situations where |
|||||||||||||
|
|
They compile to the same thing. You can write a test app that implements both methods and then use ILDASM to confirm they IL is identical. |
|||||
|
|
As mentioned by others, with any modern compiler, it should make absolutely no difference. I did a brief test on my computer, timing a couple of operations using one or the other, and they always took pretty much the same time. Of course, because of other processes running, these tests aren't 100% accurate, but if there is a difference in speed (there shouldn't be) then it is a microscopic one. |
||||
|
|
|
A debug assembly complies down to while(true). Use reflector and you can see the results.
Inspecting the
An optimized version of the same code produces different results for
For verbosity here is the optimized
|
||||
for(;;)is A) written by former C coders, and B) four characters shorter :) – hobbs Jul 29 '10 at 4:26