Effective C++ (1)
Start taking reading notes from today.1. Get accustomed to C++item1:C++ is a language federation.C++ is a multiparadigm programming language that supports procedural, object-oriented, functional, generic, and metaprogramming styles.—11The main sub-languages are: C, Object-Oriented C++, Template C++, STL.—12item2:Try to replace #define with const, enum, and inline, using the compiler instead of the preprocessor.const char * const … Read more