What is the difference between undefined, unspecified, and implementation-defined behavior in C and C++?
|
|
Undefined behavior is one of those aspects of the C++ language that can be surprising to programmers coming from other languages. Basically, it is possible to write C++ programs that do not behave in a predictable way, even though many C++ compilers will not report any errors in the program! Let's look at a classic example:
The variable
I can hear people screaming "But wait, I can compile this no problem and get the output Other examples of undefined behavior include accessing an array beyond its bounds, dereferencing the null pointer or writing allegedly clever expressions like Section 1.9 of the C++ standard also mentions undefined behavior's two less dangerous brothers, unspecified behavior and implementation-defined behavior:
Specifically, section 1.3.24 states:
What can you do to avoid running into undefined behavior? Basically, you have to read good C++ books by authors who know what they're talking about. Screw internet tutorials. Screw bullschildt. |
|||||||||||||||||||
|
|
Well, this is basically a straight copy-paste from the standard
|
|||||||||
|
|
Maybe easy wording could be easier for understanding than the rigorous definition of the standards. implementation-defined behavior undefined behavior unspecified behavior
The language doesn't specify the evaluation, left to right or right to left! So an unspecified behavior may or mayn't result in an undefined behavior, but certainly your program should not produce an unspecified behavior. @eSKay I think your question is worth editing the answer to clarify more :)
The difference between implementation-defined and unspecified, is that the compiler is supposed to pick a behavior in the first case but it doesn't have to in the second case. For example, an implementation must have one and only one definition of
|
|||||||||||||
|
|
Undefined Behavior vs. Unspecified Behavior has a short description of it. Their final summary:
|
||||
|
|
|
From the comp.lang.c FAQ: People seem to make a point of distinguishing between implementation-defined, unspecified, and undefined behavior. What do these mean? |
|||
|
|
|
From the official C Rationale Document
|
|||
|
|
