Effective C++ Notes

Effective C++ 55 Things To Improve Your Program Author of the book is Scott Meyer Item 1 C++ is a combination of 4 aspect C C++ is a super type of C and contains primitive structure and low level constructs that are inherently unsafe. When working with such code there doesn’t exist any templates, exceptions and overloading. Object Oriented C++ C++ was built on the foundation of class ideas such as [[encapsulation]], [[inheritance]], [[polymorphism]], [[virtual functions]]. ...