September 28, 2015 Harold Serrano C++ Declaring variables with "auto" in C++ September 28, 2015 Harold Serrano C++ One of the new features in C++ 11 is the automatic type deduction: auto. With auto you can declare a variable or an object without specifying its type.
September 25, 2015 Harold Serrano C++ Prefer pre-increment to post-increment September 25, 2015 Harold Serrano C++ Avoid wasteful overhead on user-defined types by using pre-increment rather than post-increment.
September 23, 2015 Harold Serrano C++ How to remove vector elements in a loop? September 23, 2015 Harold Serrano C++ Have you ever wondered how you could delete vector elements in C++ in a loop? This is a way to do it...
September 22, 2015 Harold Serrano C++ C++ tip 16: References are Aliases, not Pointers September 22, 2015 Harold Serrano C++ Don't confuse references for pointers. References are another name for an object which currently exist. They are not Pointers.
September 21, 2015 Harold Serrano C++ C++ tip 15: Delay construction of objects until they are needed September 21, 2015 Harold Serrano C++ Don't call an object constructor unless you are sure you will use it. Delay its construction as much as possible.