Now "static_assert" is a keyword in C++0x I thought it would be logical to replace the C "assert" macro with an "assert" keyword too.
|
Presumably because it would render all existing code that uses the macro un-compilable. |
|||||||||||
|
|
static_assert is interpreted at compile time so it has to be a keyword so the compiler can process it. assert doesn't need to be a keyword, and it doesn't make much sense to make it one, since there are many ways a program might want to respond to assertion success or failure. Therefore, it makes more sense to implement it in a library, and it is typically implemented as a macro. |
|||||||||||
|
|
This can not be done for compatibility with the code already written in c which has assert as a variable name. And hence as oli mentioned we won't be able to compile as assert is no longer macro |
|||
|
|
|
By contrast, There are also historic reasons; it was not a keyword in C, and making it one in C++ would have rendered existing assert macros result in undefined behavior. |
|||
|
|
|
Basically, because it doesn't need it. Existing assertion mechanisms for run-time assertions are perfectly good and don't require language support. |
|||
|
|
|
In C++0x (from here):
this is
where So, this is basically an extension of the language that needs a keyword. It is not a runtime mechanism. Again from the document linked above:
|
|||
|
|
|
|
|||||||||||||
|