There are 3 loops in C: for, while, do-while. What's the difference between them? For example, it seems nearly all while statement can be replaced by for statement, right? Then, what's the advantage using while?
|
A while loop will always evaluate the condition first.
A do/while loop will always execute
the code in the
A for loop allows you to initiate a counter variable, a check condition, and a way to increment your counter all in one line.
At the end of the day, they are all still loops, but they offer some flexibility as to how they are executed. Here is a great explanation of the reasoning behind the use of each different type of loop that may help clear things up. Thanks clyfe
For loops are especially nice because they are concise. In order for this for loop
to be written as a while loop, you'd have to do the following.
In this case, there's just more stuff to keep up with and the For the sake of completeness, it's probably meaningful to talk about break will instantly terminate the current loop and no more iterations will be executed.
continue will terminate the current iteration and move on to the next one.
Note that in a for loop, 'continue' evaluates the 'part3' expression of 'for (part1; part2; part3)'; in contrast, in a while loop, it just jumps to re-evaluate the loop condition. |
|||||||||||||||||||||
|
|
They're all interchangeable; you could pick one type and use nothing but that forever, but usually one is more convenient for a given task. It's like saying "why have switch, you can just use a bunch of if statements" -- true, but if it's a common pattern to check a variable for a set of values, it's convenient and much easier to read if there's a language feature to do that |
|||||||||||||||||||
|
|
For the sake of readability |
|||||||||||||||
|
|
If you want a loop to execute while a condition is true, and not for a certain number of iterations, it is much easier for someone else to understand:
than something like this:
|
|||||
|
|
Remember, a
The advantage of a for loop is that it's harder to accidentally do an infinite loop. Or rather, it's more obvious when you do one because you generally put the loop var in the initial statement. A
|
|||||||||||||
|
|
If there is a strong concern about speed & performances, the best approach is to verify at assembly level the code produced by the compiler. For instance, the following code shows that the "do-while" is a bit faster. This because the "jmp" istruction is not used by the "do-while" loop. BTW, in this specifc example, the worst case is given by the "for" loop. :))
// "FOR" LOOP:
// "WHILE" LOOP:
// "DO-WHILE" LOOP:
|
||||
|
|
|
A A You can use either construct, but they have their advantages and disadvantages depending on your use case. |
|||
|
|
|
You should use such a loop, that most fully conforms to your needs. For example:
Obviously, in such situation, "for" looks better, than "while". And "do while" shoud be used when some operations must be done already before the moment when condition of your loop will be checked. Sorry for my bad english). |
|||
|
|
|
They are pretty much same except for
|
|||
|
|
|
They are all the same in the work they do. You can do the same things using any of them. But for readability, usability, convenience etc., they differ. |
|||
|
|
|
A difference between while and do-while is that while checks the loop condition and if this is true, the body is executed and the condition checked again. The do-while checks the condition after execution of the body, so with do-while the body is executed at least one time. Of course you can write a while loop as a do-while and vv, but this usually requires some code duplication. |
|||
|
|
|
One peculiarity of the |
|||||||||||||
|
|
For loops (at least considering C99) are superior to while loops because they limit the scope of the incremented variable(s). Do while loops are useful when the condition is dependant on some inputs. They are the most seldom used of the three loop types. |
|||
|
|
|
Between for and while: Between for/while and do-while: in |
|||
|
|
|
WHILE is more flexible. FOR is more concise in those instances in which it applies. FOR is great for loops which have a counter of some kind, like
You can accomplish the same thing with a WHILE, of course, as others have pointed out, but now the initialization, test, and increment are broken across three lines. Possibly three widely-separated lines if the body of the loop is large. This makes it harder for the reader to see what you're doing. After all, while "++n" is a very common third piece of the FOR, it's certainly not the only possibility. I've written many loops where I write "n+=increment" or some more complex expression. FOR can also work nicely with things other than a counter, of course. Like
Etc. But FOR breaks down when the "next time through the loop" logic gets more complicated. Consider:
That is, if the process of advancing may be different depending on conditions encountered while processing, a FOR statement is impractical. Yes, sometimes you could make it work with a complicated enough expressions, use of the ternary ?: operator, etc, but that usually makes the code less readable rather than more readable. In practice, most of my loops are either stepping through an array or structure of some kind, in which case I use a FOR loop; or are reading a file or a result set from a database, in which case I use a WHILE loop ("while (!eof())" or something of that sort). |
|||
|
|
|
One common misunderstanding with
When the compiler takes your code and compiles it, it is translating it into a form that is easier for the computer to understand and execute on a lower level (assembly). During this translation, the subtle differences between the |
|||
|
|
Use any loop you like. However, the |
|||||
|

GOTOloop. While people don't think of it as a loop, I believe all loops essentially compile down to Conditional GOTO loops. – Atømix Jun 1 '10 at 15:32loopinstruction (subtraction, comparison and jump in single instruction), than one that compileswhileinto theloopinstruction? do current compilers compileforinto aloopinstruction at all? – cirosantilli Feb 6 at 18:56