My guess is it just made parsing easier, but I can't see exactly why.
So what does this have ...
do
{
some stuff
}
while(test);
more stuff
that's better than ...
do
{
some stuff
}
while(test)
more stuff
|
2
|
My guess is it just made parsing easier, but I can't see exactly why. So what does this have ...
that's better than ...
|
||
|
|
|
|
It's because while statements are valid within a do-while loop. Consider the different behaviors if the semicolon weren't required:
|
||||||||||||||
|
|
|
Because you're ending the statement. A statement ends either with a block (delimited by curly braces), or with a semicolon. "do this while this" is a single statement, and can't end with a block (because it ends with the "while"), so it needs a semicolon just like any other statement. |
||||||||||||||
|
|
|
While I don't know the answer, consistency seems like the best argument. Every statement group in C/C++ is either terminated by
Why create a construct which does neither? |
||||
|
|
|
In C/C++ whitespace don't contribute to structure (like e.g. in python). In C/C++ statements must be terminated with a semicolon. This is allowed:
|
||
|
|
|
|
C is semicolon-terminated (whereas Pascal is semicolon-separated). It would be inconsistent to drop the semicolon there. I, frankly, hate the reuse of the while for the do loop. I think repeat-until would have been less confusing. But it is what it is. |
||
|
|
|
|
I see this is an old question, but at the same time I see that the accepted answer does not match the question. I don't know why it is so. (What the question changed afterwards?) Anyway, the question in its current form is why we need a terminating
Note that only However, in practice that would mean that, for example, the following code
is valid from the grammar point of view, but would really be parsed as
While this is formally sound, it is not really intuitive. For this reason, in order to avoid such counter-intuitive results, it was decided to add a more explicit terminator to the |
||||||||||
|