So i thought i start a thread here so we can collect common pitfalls in C++ so if some dude has a c++ crash or similar he can look here.
While there is already http://stackoverflow.com/questions/30373/what-c-pitfalls-should-i-avoid , it was more a problem question than a collection of pitfalls in C++, and it wasn't community. This is trying to fix it with as many pitfalls in c++ as possible.
Examples:
deleteonnew[]returned pointer.static_castdowncast on a virtual base class
Since there is a comment telling me this is allowed, i want to prove it wrong here.5.2.9 p8:
An rvalue of type “pointer to cv1 B”, where B is a class type, can be converted to an rvalue of type “pointer to cv2 D”, where D is a class derived (clause 10) from B, if a valid standard conversion from “pointer to D” to “pointer to B” exists (4.10), cv2 is the same cv-qualification as, or greater cv-qualification than, cv1, and B is not a virtual base class of D. The null pointer value (4.10) is converted to the null pointer value of the destination type. If the rvalue of type “pointer to cv1 B” points to a B that is actually a sub-object of an object of type D, the resulting pointer points to the enclosing object of type D. Otherwise, the result of the cast is undefined.
You have to use dynamic_cast for this.- taking the
sizeofof apointerinstead of an array
