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
|
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. |
|||||||||||||||||
|
|
If you take a look at C++ grammar, you'll see that the iteration statements are defined as
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 |
|||||||||||||||
|
|
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? |
|||||||
|
|
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. |
|||
|
|
Flow control statement consistencyConsidering consistency...
...all these flow-control constructs, end with a semicolon. But, countering that we can note that of the block-statement forms, only
So, we have ';' or '}', but never a "bare" ')'. Consistency of statement delimitersWe can at least say that every statement must be delimited by If no semicolon were required, consider:
It's very difficult to visually resolve that to the distinct statements:
By way of contrast, the following is more easily resolved as a
Does it matter, given people indent their code to make the flow understandable? Yes, because:
Implications to preprocessor useIt's also worth noting the famous preprocessor do-while idiom:
This can be substituted as follows:
...yields...
If the semicolon wasn't part of the
...and, because there are two statements after the |
||||
|
|
|
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:
|
|||
|
|
|
My answer is that, the compiler may get confusion, when we didn't include the semicolon in the termination of
That's why we include semicolon in the end of |
||||
|
|