A Tour of C++ Notes (Part 1)

[[C++]] [[A Tour of C++]] A Tour of C++ (2nd edition) Notes Part 1 Preface To really know a city, you have to live in it, often for years. Read C++ Core Guidelines later The Basics Many obj files can be combined by a linker When we talk about portability of C++ programs, we usually mean portability of source code C++ STL can be implemented by C++ itself C++ STL has minor uses of machine code (except thread context switching C++ is a satically typed language (every entity must be known to the compiler before it’s used) A single quote (’) can be used as a digit separator for better read....