Say like:
a[i] = i++;
feedback
|
|
By going through the C++ standard, I found that the following actions will yield undefined behavior. My list does not include the use of the C++ standard library.
| |||||||||||||||
feedback
|
|
The compiler is free to re-order the evaluation parts of an expression (assuming the meaning is unchanged). From the original question:
Double Checked locking. And one easy mistake to make.
| |||||||||||||
feedback
|
|
The order that function parameters are evaluated is unspecified behavior. (This won't make your program crash, explode, or order pizza... unlike undefined behavior.) The only requirement is that all parameters must be fully evaluated before the function is called. This:
Can be equivalent to this:
Or this:
It can be either; it's up to the compiler. The result can matter, depending on the side effects. | |||||||||||||||||
feedback
|
|
| |||
feedback
|
|
My favourite is "Infinite recursion in the instantiation of templates" because I believe it's the only one where the undefined behaviour occurs at compile time. | |||||||||||
feedback
|
|
Besides undefined behaviour there is also equally nasty implementation-defined behaviour. Undefined behaviour occurs when a program does something the result of which is not specified by the standard. Implementation-defined behaviour is an action by a program the result of which is not defined by the standard, but which the implementation is required to document. An example is "Multibyte character literals" from this question. Implementation-defined behaviour only bites you when you start porting (but upgrading to new version of compiler is also porting!) | |||
|
feedback
|
|
Maybe what C++ pitfalls should i avoid will help. | ||||
|
feedback
|
| |||
|
feedback
|
|
The only type for which C++ guarantees a size is char. And the size is 1. The size of all other types is platform dependent | |||||||||||
feedback
|
|
Variables may only be updated once in an expression
| |||||
feedback
|
|
Namespace-level objects in different compilation units should never depend on each other for initialization, because their initialization order is undefined | |||
|
feedback
|
|
A basic understanding of the various environmental limits, the full list is in section 5.2.4.1 of the C spec, here are a few;
I was actually a bit surprised at the limit of 1023 case labels for a switch statement, I can forsee that being exceeded for generated code/lex/parsers fairly easially. If these limits are exceeded, you have undefined behavior (crashes, security flaws, etc...). Right, I know this is from the C spec, but C++ shares these basic supports. | |||
feedback
|
|
The evaluation order of function parameters is arbitrary. (So do not place operations between brackets in a function call) | |||
|
feedback
|
|
Any program that uses multithreading. | |||||||||||||||
feedback
|