I agree with most posts there: C++ is a multi-paradigm language, so the "hidden" features you'll find (other than "undefined behaviours" that you should avoid at all cost) are clever uses of facilities. Most of those facilities are not build-in features of the language, but library-based ones. The most important is the **RAII**, often ignored for years by C++ developers coming from the C world. The use of **exception** is often difficult, but with some work, can produce really robust code through **exception safety** specifications (including code that won't fail, or that will have a commit-like features that is that will succeed, or revert back to its original state). The most famous of "hidden" feature of C++ is **template metaprogramming**, as it enables you to have your program partially (or totally) executed at compile-time instead of runtime. This is difficult, though, and you must have a solid grasp on templates before trying it. Other make uses of the multiple paradigm to produce "ways of programming" outside of C++'s ancestor, that is, C. By using **functors**, you can delay code execution. Most other **design patterns** can be easily and efficiently implemented in C++ to produce alternative coding styles not supposed to be inside the list of "official C++ paradigms". By using **templates**, you can produce code that will work on most types, including not the one you thought at first. C++ object features are really powerful (and thus, dangerous if used carelessely), but even the **dynamic polymorphism** have its static version in C++: the **CRTP**. I have found that most "*Effective C++*"-type books from Scott Meyers or "*Exceptionnal C++*"-type books from Herb Sutter to be both easy to read, and quite treasures of info on known and less known features of C++. Among my prefered is one that should make the hair of any Java programmer rise from horror: In C++, the most object-oriented way to add a feature to an object is through a non-member non-friend function, instead of a member-function (i.e. class method), because: * In C++, a class' interface is both its member-functions and the non-member functions in the same namespace * non-friend non-member functions have no privilegied access to the class internal. As such, using a member function over a non-member non-friend one will weaken the class' encapsulation. This never fails to surprise even experienced developers.