C++ Modifiers and Specifiers: Precise Control of Types and Behaviors

C++ Modifiers and Specifiers: Precise Control of Types and Behaviors

Welcome to follow and continuously share insights on learning C++ Selected Previous Articles C++ std::thread: A Cross-Platform Thread Management Tool for Concurrency From Explicit to Smart: Core Features of C++ Class Templates C++ Exception Handling: From Crashes to the Art of Elegant Error Management Since the birth of C++11 and the release of C++23 in … Read more

Interpretation of Google C++ Style Guide Series Part 2 (Scope)

Link to Previous Issue:Interpretation of Google C++ Style Guide Series Part 1 (Header Files) 2.1 Namespaces Except for a few special cases, code should be placed within a namespace, which should have a unique name that includes the project name and may optionally include the file path. The use of <span>using namespace foo</span> is prohibited, … Read more