Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
C++: A Language for Modern Times
Mar 29, 2012 at 11:38 PMNot like C++ is a walk in a park. Still lots of pitfalls:
- Remember to make constructors with one argument explicit (unless wanting automatic conversion)
- Remember to declare destructor virtual when using inheritance (usually when there are already other virtual functions)
- Remember that initialize-list in constructor follows declaration order
- String formatting libraries like printf_s is like a poison-snake, just waiting to bite
- Most of the STL iterator container safety is out of the window when in release mode (which is good), so illegal operations means crash or worse unexpected behavior.
Though I'm not saying that there doesn't exist pitfalls in the managed world.