diff --git a/documentation/source/readme/C++ Coding Style Guide.rst b/documentation/source/readme/C++ Coding Style Guide.rst
index 49cc3d5f3cffa2ec92fae42b0cfa08b2c560e9be..ead732e43c94010ed80de73db7d1e0cbe82e406a 100644
--- a/documentation/source/readme/C++ Coding Style Guide.rst	
+++ b/documentation/source/readme/C++ Coding Style Guide.rst	
@@ -1455,4 +1455,2185 @@ templates and is not meant for its definition.
     with a forward declaration may cause unexpected results.
 
 Therefore, we should avoid using forward declarations as much as possible. Instead, we use the #include statement to include a header
-file and ensure dependency.
\ No newline at end of file
+file and ensure dependency.
+
+Scopes
+******
+
+Namespaces
+==========
+
+Recommendation 6.1.1 For code that does not need to be exported from the .cpp file, you are advised to use an unnamed namespace for encapsulation or use static to modify the variables, constants, or functions that need hiding.
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+
+In the C++ 2003 standard, using static to modify the external availability of functions and variables was marked as deprecated.
+Therefore, unnamed namespaces are the recommended method.
+
+Main Reasons:
+ 
+#. There are too many meanings for static in C++: static function member variable, static member function, static global variable, and static function local variable. Each of them has specialprocessing. 
+#. Static can only be used to define variables, constants, and functions that are not referenced outside the current .cpp file, while namespaces can also be used to encapsulate types. 
+#. Use a namespace to control the scope instead of using both static and namespaces. 
+#. Unnamed namespaces can be used to instantiate templates rather than functions modified by the static keyword.
+
+Do not use unnamed namespaces or static in header files.
+
+.. code:: cpp
+
+   // Foo.cpp
+
+   namespace {
+       const int MAX_COUNT = 20;
+       void InternalFun(){};
+   }
+
+   void Foo::Fun()
+   {
+       int i = MAX_COUNT;
+       
+       InternalFun();
+   }
+
+Rule 6.1.1 Do not use “using” to import namespace in a header file or before #include statements.
+-------------------------------------------------------------------------------------------------
+
+Note: Using “using” to import namespace will affect any subsequent code
+and may cause symbol conflicts. Example:
+
+.. code:: cpp
+
+   // Header file a.h
+   namespace NamespaceA {
+       int Fun(int);
+   }
+
+.. code:: cpp
+
+   // Header file b.h
+   namespace NamespaceB {
+       int Fun(int);
+   }
+
+   using namespace NamespaceB;
+
+   void G()
+   {
+       Fun(1); 
+   }
+
+.. code:: cpp
+
+   // Source code a.cpp
+   #include "a.h"
+   using namespace NamespaceA; 
+   #include "b.h"
+
+   void main()
+   {
+       G(); // "using namespace NamespaceA" before #include "b.h", will cause conflicts when calling NamespaceA::Fun and NamespaceB::Fun.
+   }
+
+Using “using” to import a symbol or define an alias in a header file is
+allowed in customized namespaces of modules, but is prohibited in the
+global namespace.
+
+.. code:: cpp
+
+   // foo.h
+
+   #include <fancy/string>
+   using fancy::string;  // Bad: It is prohibited to import symbols to the global namespace.
+
+   namespace Foo {
+       using fancy::string;  // Good: Symbols can be imported in customized namespaces of modules.
+       using MyVector = fancy::vector;  // Good: In C++11, aliases can be defined in customized namespaces.
+   }
+
+Global Functions and Static Member Functions
+=============================================
+
+Recommendation 6.2.1 Use namespaces to manage global functions. If global functions are closely tied to a class, you can use static member functions.
+-----------------------------------------------------------------------------------------------------------------------------------------------------
+
+Note: Placing non-member functions in a namespace avoids polluting the
+global scope. Do not use “class + static member function” to simply
+manage global functions. If a global function is closely tied to a
+class, it can be used as a static member function of the class.
+
+If you need to define some global functions for a .cpp file, use unnamed
+namespaces for management.
+
+.. code:: cpp
+
+   namespace MyNamespace {
+       int Add(int a, int b);
+   }
+
+   class File {
+   public:
+       static File CreateTempFile(const std::string& fileName);
+   };
+
+Global Constants and Static Member Constants
+============================================
+
+
+Recommendation 6.3.1 Use namespaces to manage global constants. If global constants are closely tied to a class, you can use static member constants.
+-----------------------------------------------------------------------------------------------------------------------------------------------------
+
+Note: Placing global constants in a namespace avoids polluting the
+global scope. Do not use “class + static member constant” to simply
+manage global constants. If a global constant is closely tied to a
+class, it can be used as a static member constant of the class.
+
+If you need to define some global constants only for a .cpp file, use
+unnamed namespaces for management.
+
+.. code:: cpp
+
+   namespace MyNamespace {
+       const int MAX_SIZE = 100;
+   }
+
+   class File {
+   public:
+       static const std::string SEPARATOR;
+   };
+
+Global Variables
+================
+
+Recommendation 6.4.1 Do not use global variables. Use the singleton pattern instead.
+------------------------------------------------------------------------------------
+
+Note: Global variables can be modified and read, which results in data
+coupling between production code and the global variables.
+
+.. code:: cpp
+
+   int g_counter = 0;
+
+   // a.cpp
+   g_counter++;
+
+   // b.cpp
+   g_counter++;
+
+   // c.cpp
+   cout << g_counter << endl;
+
+Singleton
+
+.. code:: cpp
+
+   class Counter {
+   public:
+       static Counter& GetInstance()
+       {
+           static Counter counter;
+           return counter;
+       }  // Simple example of a singleton implementation
+       
+       void Increase() 
+       {
+           value_++;
+       }
+       
+       void Print() const
+       {
+           std::cout << value_ << std::endl;
+       }
+
+   private:
+       Counter() : value_(0) {}
+
+   private:
+       int value_;
+   };
+
+   // a.cpp
+   Counter::GetInstance().Increase();
+
+   // b.cpp
+   Counter::GetInstance().Increase();
+
+   // c.cpp
+   Counter::GetInstance().Print();
+
+After the singleton is implemented, there is a unique global instance, which can functions as a global variable. However, the singleton
+provides better encapsulation.
+
+Exception: In some cases, the scope of a global variable is contained inside a module. Multiple instances of the same global variable may
+exist, and each module holds one copy. In this case, a singleton cannot be used as it is limited to one instance.
+
+Classes
+=======
+
+Constructors, Copy/Move Constructors, Copy/Move Assignment Operators, and Destructors
+-------------------------------------------------------------------------------------
+
+| Constructors, copy/move constructors, copy/move assignment operators,
+  and destructors provide lifetime management methods for objects. -
+  Constructor: ``X()`` - Copy constructor: ``X(const X&)`` - Copy
+  assignment operator: ``operator=(const X&)``
+| - Move constructor: ``X (X&&)`` *Provided in versions later than C++
+  11*. - Move assignment operator: ``operator=(X&&)`` *Provided in
+  versions later than C++ 11*. - Destructor: ``~X()``
+
+Rule 7.1.1 The member variables of a class must be initialized explicitly.
+--------------------------------------------------------------------------
+
+Note: If a class has members but no constructor and a default
+constructor is defined, the compiler will automatically generate a
+constructor, but it will not initialize member variables. The content of
+each object is uncertain.
+
+Exception: - If the member variables in a class have a default constructor, explicit initialization is not required.
+
+Example: The following code has no constructor, and private data members cannot be initialized:
+
+.. code:: cpp
+
+   class Message {
+   public:
+       void ProcessOutMsg()
+       {
+           //…
+       }
+
+   private:
+       unsigned int msgID_;
+       unsigned int msgLength_;
+       unsigned char* msgBuffer_;
+       std::string someIdentifier_;
+   };
+
+   Message message;   // The message member is not initialized.
+   message.ProcessOutMsg();   // Potential risks exist in subsequent use.
+
+   // Therefore, it is necessary to define a default constructor as follows:
+   class Message {
+   public:
+       Message() : msgID_(0), msgLength_(0), msgBuffer_(NULL)
+       {
+       }
+
+       void ProcessOutMsg()
+       {
+           // …
+       }
+
+   private:
+       unsigned int msgID_;
+       unsigned int msgLength_;
+       unsigned char* msgBuffer_;
+       std::string someIdentifier; // The member variable has a default constructor. Therefore, explicit initialization is not required.
+   };
+
+Recommendation 7.1.1 Initialization during declaration (C++ 11) and initialization using the constructor initialization list are preferred for member variables.
+----------------------------------------------------------------------------------------------------------------------------------------------------------------
+
+Note: Initialization during declaration (C++11) is preferred because
+initialized values of member variables can be easily understood. If
+initialized values of certain member variables are relevant to
+constructors, or C++ 11 is not supported, the constructor initialization
+list is used preferentially to initialize these member variables.
+Compared with the assignment statements in constructors, code of the
+constructor initialization list is simpler and has higher performance,
+and can be used to initialize constant and reference members.
+
+.. code:: cpp
+
+   class Message {
+   public:
+       Message() : msgLength(0) {  // Good: The constructor initialization list is preferred.
+       {
+           msgBuffer = NULL;     // Bad: Values cannot be assigned in constructors.
+       }
+       
+   private:
+       unsigned int msgID{0};  // Good: Used in C++11.
+       unsigned int msgLength_;
+       unsigned char* msgBuffer_;
+   };
+
+Rule 7.1.2 Declare single-parameter constructors as explicit to prevent implicit conversion.
+--------------------------------------------------------------------------------------------
+
+Note: If a single-parameter constructor is not declared as explicit, it
+will become an implicit conversion function. Example:
+
+.. code:: cpp
+
+   class Foo {
+   public:
+       explicit Foo(const string& name): name_(name)
+       {
+       }
+   private:
+       string name_;
+   };
+
+
+   void ProcessFoo(const Foo& foo){}
+
+   int main(void)
+   {
+       std::string test = "test";
+       ProcessFoo(test);  // Compiling failed.
+       return 0;
+   }
+
+The preceding code fails to be compiled because the parameter required by ``ProcessFoo`` is of the Foo type, which mismatch with the input string type.
+
+If the explicit keyword of the Foo constructor is removed, implicit conversion is triggered and a temporary Foo object is generated when ``ProcessFoo`` is called with the string parameter. Usually, this
+implicit conversion is confusing and bugs are apt to be hidden, due to unexpected type conversion. Therefore, single-parameter constructors require explicit declaration.
+
+Rule 7.1.3 If copy/move constructors and copy/move assignment operators are not needed, clearly prohibit them.
+--------------------------------------------------------------------------------------------------------------
+
+Note: If users do not define it, the compiler will generate copy constructors and copy assignment operators, move constructors and move assignment operators (move semantic functions will be available in versions later than C++ 11). If we do not use copy constructors or copy
+assignment operators, explicitly delete them.
+
+#. Set copy constructors or copy assignment operators to private and do
+   not implement them.
+
+.. code:: cpp
+
+   class Foo {
+   private:
+       Foo(const Foo&);
+       Foo& operator=(const Foo&);
+   };
+
+#. Use delete provided by C++ 11. For details, see Rule 10.1.3 in chapter 10 Modern C++ Features.
+
+Rule 7.1.4 Copy constructors and copy assignment operators should be implemented or forbidden together.
+-------------------------------------------------------------------------------------------------------
+
+Both copy constructors and copy assignment operators provide copy
+semantics. They should be implemented or hidden together.
+
+.. code:: cpp
+
+   // The copy constructor and the copy assignment operator are implemented together.
+   class Foo {
+   public:
+       ...
+       Foo(const Foo&);
+       Foo& operator=(const Foo&);
+       ...
+   };
+
+   // The copy constructor and the copy assignment operator are both set to default, as supported by C++ 11.
+   class Foo {
+   public:
+       Foo(const Foo&) = default;
+       Foo& operator=(const Foo&) = default;
+   };
+
+   // The copy constructor and the copy assignment operator are hidden together. You should use the delete keyword if C++11 features are available.
+   class Foo {
+   private:
+       Foo(const Foo&);
+       Foo& operator=(const Foo&);
+   };
+
+Rule 7.1.5 Move constructors and move assignment operators should be implemented or hidden together.
+----------------------------------------------------------------------------------------------------
+
+The move operation is added in C++ 11. If a class is required to support
+the move operation, move constructors and move assignment operators need
+to be implemented.
+
+Both move constructors and move assignment operators provide move
+semantics. They should be implemented or hidden together.
+
+.. code:: cpp
+
+   // The copy constructor and the copy assignment operator are implemented together.
+   class Foo {
+   public:
+       ...
+       Foo(Foo&&);
+       Foo& operator=(Foo&&);
+       ...
+   };
+
+   // The copy constructor and the copy assignment operator are both set to default, as supported by C++ 11.
+   class Foo {
+   public:
+       Foo(Foo&&) = default;
+       Foo& operator=(Foo&&) = default;
+   };
+
+   // The copy constructor and the copy assignment operator are hidden together. You should use the delete keyword if C++11 features are available.
+   class Foo {
+   public:
+       Foo(Foo&&) = delete;
+       Foo& operator=(Foo&&) = delete;
+   };
+
+Rule 7.1.6 It is prohibited to call virtual functions in constructors and destructors.
+--------------------------------------------------------------------------------------
+
+Note: Calling a virtual function of the current object in a constructor
+or destructor will cause behaviors of non-polymorphism. In C++, a base
+class constructs only one complete object at a time.
+
+Example: Base indicates the base class, and Sub indicates the derived
+class.
+
+.. code:: cpp
+
+   class Base {                       
+   public:                
+       Base();
+       virtual void Log() = 0;    // Different derived classes call different log files.
+   };
+
+   Base::Base()         // Base class constructor
+   {
+       Log();           // Call the virtual function log.
+   }                                                  
+
+   class Sub : public Base {       
+   public:
+       virtual void Log();          
+   };
+
+When running the following statement: ``Sub sub;`` The constructor of
+the derived class is executed first. However, the constructor of the
+base class is called first. Because the constructor of the base class
+calls the virtual function log, the log is in the base class version.
+The derived class is constructed only after the base class is
+constructed. As a result, behaviors of non-polymorphism are caused. This
+also applies to destructors.
+
+Inheritance
+===========
+
+Rule 7.2.1 Destructors of a base class should be declared as virtual.
+---------------------------------------------------------------------
+
+Note: Destructors of the derived class can be called during polymorphism
+invocation only when destructors of the base class are virtual.
+
+Example: There will be memory leak if destructors of the base class are
+not declared as virtual.
+
+.. code:: cpp
+
+   class Base {
+   public:
+       virtual std::string getVersion() = 0;
+       
+       ~Base() 
+       {
+           std::cout << "~Base" << std::endl;
+       }
+   };
+
+.. code:: cpp
+
+   class Sub : public Base {
+   public:
+       Sub() : numbers_(NULL)
+       {  
+       }
+       
+       ~Sub()
+       {
+           delete[] numbers_;
+           std::cout << "~Sub" << std::endl;
+       }
+       
+       int Init()
+       {
+           const size_t numberCount = 100;
+           numbers_ = new (std::nothrow) int[numberCount];
+           if (numbers_ == NULL) {
+               return -1;
+           }
+           
+           ...
+       }
+
+       std::string getVersion() 
+       { 
+           return std::string("hello!");
+       }
+   private:
+       int* numbers_;
+   };
+
+.. code:: cpp
+
+   int main(int argc, char* args[])
+   {
+       Base* b = new Sub();
+
+       delete b;
+       return 0;
+   }
+
+Because destructors of the base class are not declared as virtual, only destructors of the base class are called when an object is destroyed.
+Destructors of the derived class Sub are not called. As a result, a memory leak occurs.
+
+Rule 7.2.2 Do not use default parameter values for virtual functions.
+---------------------------------------------------------------------
+
+Note: In C++, virtual functions are dynamically bound, but the default
+parameters of functions are statically bound during compilation. This
+means that the function you finally execute is a virtual function that
+is defined in the derived class but uses the default parameter value in
+the base class. To avoid confusion and other problems caused by
+inconsistent default parameter declarations during overriding of virtual
+functions, it is prohibited to declare default parameter values for all
+virtual functions. Example: The default value of parameter “text” of the
+virtual function “Display” is determined at compilation time instead of
+runtime, which does not fit with polymorphism.
+
+.. code:: cpp
+
+   class Base {
+   public:
+       virtual void Display(const std::string& text = "Base!")
+       {
+           std::cout << text << std::endl;
+       }
+       
+       virtual ~Base(){}
+   };
+
+   class Sub : public Base {
+   public:
+       virtual void Display(const std::string& text  = "Sub!")
+       {
+           std::cout << text << std::endl; 
+       }
+       
+       virtual ~Sub(){}
+   };
+
+   int main()
+   {
+       Base* base = new Sub();
+       Sub* sub = new Sub();
+      
+       ...
+       
+       base->Display();  // The program output is as follows: Base! The expected output is as follows: Sub!
+       sub->Display();   // The program output is as follows: Sub!
+       
+       delete base;
+       delete sub;
+       return 0;
+   };
+
+Rule 7.2.3 Do not redefine inherited non-virtual functions.
+-----------------------------------------------------------
+
+Note: Non-virtual functions cannot be dynamically bound (only virtual
+functions can be dynamically bound). You can obtain the correct result
+by operating on the pointer of the base class.
+
+Example:
+
+.. code:: cpp
+
+   class Base {
+   public:
+       void Fun();
+   };
+
+   class Sub : public Base { 
+   public:
+       void Fun();
+   };
+
+   Sub* sub = new Sub();                     
+   Base* base = sub;
+
+   sub->Fun();    // Call Fun of the derived class.                  
+   base->Fun();   // Call Fun of the base class.
+   //...
+
+Multiple Inheritance
+====================
+
+In the actual development process, multiple inheritance is seldom used because the following typical problems may occur: 
+
+#. Data duplication and name ambiguity caused by “diamond” inheritance. C++ introduces virtual inheritance to solve these problems.
+#. In addition to “diamond” inheritance, names of multiple base classes may also conflict with each other, resulting in name ambiguity. 
+#. If a derived class needs to be extended or needs to override methods of multiple base classes, the responsibilities of the derived classes are 
+   unclear and semantics are muddled. 
+#. Compared with delegation, inheritance is seen as white box reuse, that is, a derived class can access the protected members of the base class,  
+   which leads to more coupling. Multiple inheritance, due to the coupling of multiple base classes, leads to even more coupling.
+
+Multiple inheritance has the following advantages:
+ 
+Multiple inheritance provides a simpler method for assembling and reusing multiple interfaces or classes. Therefore, multiple inheritance can be used only in the following cases:
+
+Recommendation 7.3.1 Use multiple inheritance to implement interface separation and multi-role combination.
+-----------------------------------------------------------------------------------------------------------
+
+If a class requires multiple interfaces, combine multiple separated interfaces by using multiple inheritance. This is similar to the Traits
+mixin of the Scala language.
+
+.. code:: cpp
+
+   class Role1 {};
+   class Role2 {};
+   class Role3 {};
+
+   class Object1 : public Role1, public Role2 {
+       // ...
+   };
+
+   class Object2 : public Role2, public Role3 {
+       // ...
+   };
+
+The C++ standard library has a similar implementation example:
+
+.. code:: cpp
+
+   class basic_istream {};
+   class basic_ostream {};
+
+   class basic_iostream : public basic_istream, public basic_ostream {
+     
+   };
+
+Overloading
+-----------
+
+Overload operators should be used when there are sufficient reasons, and they do not change the original perception of the operators. 
+For example, do not use the plus sign (+) to perform subtraction. Operator overloading can make code more intuitive but has some disadvantages:
+
+* It is often mistaken that the operation is as fast as a built-in operator, which has no performance degradation. 
+* There is no naming to aid debugging. It is more convenient to search by function name than by operator.
+* Overloading operators can cause confusion if behavior definitions are not intuitive (for example, if the “+” operator is used for subtraction).
+* The implicit conversion caused by the overloading of assignment operators may lead to entrenched bugs. Functions such as Equals () and CopyFrom () 
+  can be defined to replace the = and == operators.
+
+Functions
+*********
+
+Function Design
+===============
+
+Rule 8.1.1 Avoid long functions and ensure that each function contains no more than 50 lines (non-null and non-comment).
+------------------------------------------------------------------------------------------------------------------------
+
+A function should be displayed on one screen (no longer than 50 lines). It should do only one thing, and do it well.
+
+Long functions often mean that the functions are too complex to implement in more than one function, or overly detailed but not further
+abstracted.
+
+Exception: Some algorithms may be longer than 50 lines due to algorithm convergence and functional comprehensiveness.
+
+Even if a long function works very well now, once someone modifies it, new problems may occur. It might even cause bugs that are difficult to
+find. It is recommended that you split a long function into several functions that are simpler and easier to manage, facilitating comprehension and modification.
+
+Inline Functions
+================
+
+Recommendation 8.2.1 An inline function cannot exceed 10 lines.
+---------------------------------------------------------------
+
+**Note**: An inline function has the same characteristics of a normal function. The difference between an inline function and a normal function lies in the processing of function calls. When a general function is called, the program execution right is transferred to the
+called function, and then returned to the function that calls it. When an inline function is called, the invocation expression is replaced with an inline function body.
+
+Inline functions are only suitable for small functions with only 1-10 lines. For a large function that contains many statements, the function call and return overheads are relatively trivial and do not need the
+help of an inline function. Most compilers may abandon the inline mode and use the common method to call the function.
+
+If an inline function contains complex control structures, such as loop, branch (switch), and try-catch statements, the compiler may regard the function as a common function. **Virtual functions and recursive
+functions cannot be used as inline functions**.
+
+Function Parameters
+===================
+
+Recommendation 8.3.1 Use a reference instead of a pointer for function parameters.
+----------------------------------------------------------------------------------
+
+**Note**: A reference is more secure than a pointer because it is not empty and does not point to other targets. Using a reference stops the need to check for illegal null pointers.
+
+If a product is being developed for an older platform, the processing used by the old platform is preferred. Use const to avoid parameter modification, so that readers can clearly know that a parameter is not going to be modified. This greatly enhances code readability.
+
+Exception: When the input parameter is an array with an unknown compile-time length, you can use a pointer instead of a reference.
+
+Recommendation 8.3.2 Use strongly typed parameters. Do not use void*.
+---------------------------------------------------------------------
+
+While different languages have their own views on strong typing and weak typing, it is generally believed that C and C++ are strongly typed languages. Since we use such a strongly typed language, we should keep to this style. An advantage of this is the compiler can find type mismatch problems at the compilation stage.
+
+Using strong typing helps the compiler find more errors for us. Pay attention to the usage of the FooListAddNode function in the following code:
+
+.. code:: cpp
+
+   struct FooNode {
+       struct List link;
+       int foo;
+   };
+
+   struct BarNode {
+       struct List link;
+       int bar;
+   }
+
+   void FooListAddNode(void *node) // Bad: Here, the void * type is used to transfer parameters.
+   {
+       FooNode *foo = (FooNode *)node;
+       ListAppend(&g_FooList, &foo->link);
+   }
+
+   void MakeTheList()
+   {
+       FooNode *foo = NULL;
+       BarNode *bar = NULL;
+       ...
+
+       FooListAddNode(bar);        // Wrong: In this example, the foo parameter was supposed to be transferred, but the bar parameter is accidentally transferred instead. However, no error is reported.
+   }
+
+#. You can use a template function to change the parameter type.
+#. A base class pointer can be used to implement this according to
+   polymorphism.
+
+Recommendation 8.3.3 A function can have a maximum of five parameters.
+----------------------------------------------------------------------
+
+If a function has too many parameters, it is apt to be affected by external changes, and therefore maintenance is affected. Too many
+function parameters will also increase the testing workload.
+
+If a function has more than five parameters, you can:
+
+* Split the function. 
+* Combine related parameters into a struct.
+
+Other C++ Features
+******************
+
+Constants and Initialization
+============================
+
+Unchanged values are easier to understand, trace, and analyze.
+Therefore, use constants instead of variables as much as possible. When
+defining values, use const as a default.
+
+Rule 9.1.1 Do not use macros to replace constants.
+--------------------------------------------------
+
+**Note**: Macros are a simple text replacement that is completed in the
+preprocessing phase. When an error is reported, the corresponding value
+is reported. During tracing and debugging, the value is also displayed
+instead of the macro name. A macro does not support type checking and is
+insecure. A macro has no scope.
+
+.. code:: cpp
+
+   #define MAX_MSISDN_LEN 20    // Bad
+
+   // Use const in C++.
+   const int MAX_MSISDN_LEN = 20; // Good
+
+   // In versions later than C++ 11, constexpr can be used.
+   constexpr int MAX_MSISDN_LEN = 20;
+
+Recommendation 9.1.1 A group of related integer constants must be defined as an enumeration.
+--------------------------------------------------------------------------------------------
+
+**Note**: Enumerations are more secure than ``#define`` or
+``const int``. The compiler checks whether a parameter value is within
+the enumerated value range to avoid errors.
+
+.. code:: cpp
+
+   // Good example:
+   enum Week {
+       SUNDAY,
+       MONDAY,
+       TUESDAY,
+       WEDNESDAY,
+       THURSDAY,
+       FRIDAY,
+       SATURDAY
+   };
+
+   enum Color {
+       RED,
+       BLACK,
+       BLUE
+   };
+
+   void ColorizeCalendar(Week today, Color color);
+
+   ColorizeCalendar(BLUE, SUNDAY); // Compilation error. The parameter type is incorrect.
+
+   // Bad example:
+   const int SUNDAY = 0;
+   const int MONDAY = 1;
+
+   const int BLACK  = 0;
+   const int BLUE   = 1;
+
+   bool ColorizeCalendar(int today, int color);
+   ColorizeCalendar(BLUE, SUNDAY); // No error is reported.
+
+When an enumeration value needs to correspond to a specific value,
+explicit value assignment is required during declaration. Otherwise, do
+not assign explicit values. This will prevent repeated assignment and
+reduce the maintenance workload (when adding and deleting members).
+
+.. code:: cpp
+
+   // Good example: Device ID defined in the S protocol. It is used to identify a device type.
+   enum DeviceType {
+       DEV_UNKNOWN = -1,
+       DEV_DSMP = 0,
+       DEV_ISMG = 1,
+       DEV_WAPPORTAL = 2
+   };
+
+Do not assign explicit values when enumeration is used internally, and
+only for classification.
+
+.. code:: cpp
+
+   // Good example: Enumeration definition is used to identify session status in a program.
+   enum SessionState {
+       INIT,
+       CLOSED,
+       WAITING_FOR_RESPONSE
+   };
+
+Try to avoid repeating enumeration values. If it is required, use the
+already defined enumeration values instead.
+
+.. code:: cpp
+
+   enum RTCPType {
+       RTCP_SR = 200,
+       RTCP_MIN_TYPE = RTCP_SR,        
+       RTCP_RR    = 201,
+       RTCP_SDES  = 202,
+       RTCP_BYE   = 203,
+       RTCP_APP   = 204,
+       RTCP_RTPFB = 205,
+       RTCP_PSFB  = 206,
+       RTCP_XR  = 207,
+       RTCP_RSI = 208,
+       RTCP_PUBPORTS = 209,
+       RTCP_MAX_TYPE = RTCP_PUBPORTS  
+   };
+
+Rule 9.1.2 Magic numbers cannot be used.
+----------------------------------------
+
+So-called magic numbers are numbers that are unintelligible and
+difficult to understand.
+
+Some numbers can be understood based on context. For example, the number
+12 varies in different contexts. type = 12; is not intelligible (and a
+magic number), but ``month = year * 12``; can be understood, so we
+wouldn’t really class this as a magic number. The number 0 is often seen
+as a magic number. For example, ``status = 0``; cannot truly express any
+status information.
+
+Solution: Comments can be added for numbers that are used locally. For
+the numbers that are used multiple times, you must define them as
+constants and give them descriptive names.
+
+The following cases are forbidden: No symbol is used to explain the
+meaning of a number, for example, ``const int ZERO = 0``. The symbol
+name limits the value. For example, for example,
+``const int XX_TIMER_INTERVAL_300MS = 300``. Use
+``XX_TIMER_INTERVAL_MS`` instead.
+
+Rule 9.1.3 Ensure that a constant has only one responsibility.
+--------------------------------------------------------------
+
+**Note**: A constant is used for only one specific function, that is, a
+constant cannot be used for multiple purposes.
+
+.. code:: cpp
+
+   // Good example: For protocol A and protocol B, the length of the MSISDN is 20.
+   const unsigned int A_MAX_MSISDN_LEN = 20;
+   const unsigned int B_MAX_MSISDN_LEN = 20;
+
+   // Using different namespaces:
+   namespace Namespace1 {
+       const unsigned int MAX_MSISDN_LEN = 20;
+   }
+
+   namespace Namespace2 {
+       const unsigned int MAX_MSISDN_LEN = 20;
+   }
+
+Rule 9.1.4 Do not use memcpy_s or memset_s to initialize non-POD objects.
+-------------------------------------------------------------------------
+
+**Note**: ``POD`` is short for ``Plain Old Data``, which is a concept
+introduced in the C++ 98 standard (ISO/IEC 14882, first edition,
+1998-09-01). The ``POD`` types include the original types and aggregate
+types such as ``int``, ``char``, ``float``, ``double``, ``enumeration``,
+``void``, and pointer. Encapsulation and object-oriented features cannot
+be used (for example, user-defined constructors, assignment operators,
+destructors, base classes, and virtual functions).
+
+For non-POD classes, such as class objects of non-aggregate types,
+virtual functions may exist. Memory layout is uncertain, and is related
+to the compiler. Misuse of memory copies may cause serious problems.
+
+Even if a class of the aggregate type is directly copied and compared,
+and any functions hiding information or protecting data are destroyed,
+the ``memcpy_s`` and ``memset_s`` operations are not recommended.
+
+For details about the POD type, see the appendix.
+
+Recommendation 9.1.2 Declare and initialize variables only when they are used.
+------------------------------------------------------------------------------
+
+**Note**: It is a common low-level programming error that a variable is
+not assigned an initial value before being used. Declaring and
+initializing a variable just before using it will prevent this.
+
+If all variables are declared at the beginning of a function before they
+are used, their scope covers the entire function, which may lead to the
+following problems: \* The program may become difficult to understand
+and maintain. The definition and use of variables are separated. \*
+These variables are difficult to initialize properly. At the beginning
+of a function, there is often insufficient information for variable
+initialization, and a default null value (such as 0) is often assigned
+as the initial value. If a variable is used before it is assigned a
+valid value, it will also cause errors.
+
+Following the minimization principle of variable scopes and the
+principle of proximity declaration will make it easier to read code and
+understand variable types and initial values. In particular, use
+initialization to replace declaration and then assign values.
+
+.. code:: cpp
+
+   // Bad example: Declaration is separated from initialization.
+   string name;        // The variable is not initialized in the declaration, and a default constructor is called.
+   name = "zhangsan";  // An assignment operator is called again. Declaration is separate from definition, which is difficult to understand.
+
+   // Good example: Declaration and initialization are together, and easy to understand.
+   string name("zhangsan");  // Invoke a constructor.
+
+.. _expressions-1:
+
+Expressions
+===========
+
+Rule 9.2.1 A variable cannot be referenced again if it is contained in an increment or decrement operation in an expression.
+----------------------------------------------------------------------------------------------------------------------------
+
+In an expression where the increment or decrement operations are
+performed on a variable, the variable cannot be referenced again. The
+result of a second referencing is not explicitly defined in C++
+standards. The results in different compilers or different versions of a
+compiler may be different. Therefore, it is recommended that an
+undefined operation sequence not be assumed.
+
+Note that the problem of operation sequence cannot be solved by using
+parentheses because this is not a priority problem.
+
+Example:
+
+.. code:: cpp
+
+   x = b[i] + i++; // Bad: Whether the position of b[i] is before or after the i++ is unclear.
+
+The increment or decrement operation should be placed in a single line:
+
+.. code:: cpp
+
+   x = b[i] + i;
+   i++;            // Good: i++ is placed in a single line.
+
+Function parameter
+
+.. code:: cpp
+
+   Func(i++, i);   // Bad: Whether the increment operation happens for the second parameter is unclear
+
+Good example:
+
+.. code:: cpp
+
+   i++;            // Good: i++ is placed in a single line.
+   x = Func(i, i);
+
+Rule 9.2.2 A switch statement must have a default branch.
+---------------------------------------------------------
+
+In most cases, a switch statement requires a default branch to ensure
+that there is a default action when the case tag is missing for a
+processed value.
+
+Exception: If the switch condition variables are enumerated and the case
+branch covers all values, the default branch is redundant. Because
+modern compilers can check which case branches are missing in the switch
+statement and provide an advanced warning.
+
+.. code:: cpp
+
+   enum Color {
+       RED = 0,
+       BLUE
+   };
+
+   // The switch condition variables are enumerated. Therefore, you do not need to add a default branch.
+   switch (color) {
+       case RED:
+           DoRedThing();
+           break;
+       case BLUE:
+           DoBlueThing();
+           ...
+           break;
+   }
+
+Recommendation 9.2.1 When comparing expressions, follow the principle that the left side tends to change and the right side tends to remain unchanged.
+------------------------------------------------------------------------------------------------------------------------------------------------------
+
+When a variable is compared with a constant, placing the constant on the
+left, for example, if (MAX == v), does not comply with standard reading
+habits and is more difficult to understand. The constant should be
+placed on the right. The expression is written as follows:
+
+.. code:: cpp
+
+   if (value == MAX) {
+     
+   }
+
+   if (value < MAX) {
+     
+   }
+
+There are special cases: for example, if the expression
+``if (MIN < value && value < MAX)`` is used to describe a range, the
+first half, as a constant, should be placed on the left.
+
+You do not need to worry about writing ‘==’ as ‘=’ because a compilation
+alarm will be generated for ``if (value = MAX)`` and an error will be
+reported by other static check tools. Use these tools to solve such
+writing errors and ensure that that code is readable.
+
+Recommendation 9.2.2 Use parentheses to specify the operator precedence.
+------------------------------------------------------------------------
+
+Use parentheses to specify the operator precedence. This will prevent
+program errors due to the inconsistency between default priority and the
+intended design. At the same time, it makes the code clearer and more
+readable. However, too many parentheses muddy the code, reducing
+readability. The following is a recommendation on their correct usage.
+
+For binary and ternary operators, if multiple operators are involved, parentheses should be used.
+
+.. code:: cpp
+
+   x = a + b + c;        /* The operator does not change, and thus parentheses are not required. */
+   x = Foo(a + b, c);     /* The operator does not change, and thus parentheses are not required. */
+   x = 1 << (2 + 3);      /* More than one operator is used and thus parentheses are required. */
+   x = a + (b / 5);       /* More than one operator is used and thus parentheses are required. */
+   x = (a == b) ? a : (a – b);    /* More than one operator is used and thus parentheses are required. */
+
+Type Casting
+============
+
+Do not use type branches to customize behaviors. Type branch
+customization behavior is prone to errors and is an obvious sign of
+attempting to compile C code using C++. This is very inflexible
+technology. If you forget to modify all branches when adding a new type
+to a compiler, you will not be notified. Use templates and virtual
+functions to let the type define itself rather than letting the calling
+side determine behavior.
+
+It is recommended that type casting be avoided. We should consider the
+data type in the code design instead of overusing type casting to solve
+type conflicts. When designing a basic type, consider the following: -
+Whether it is unsigned or signed. - Is it suitable for float or double?
+- Should you use int8, int16, int32, or int64 bit lengths?
+
+However, we cannot prohibit the use of type casting because the C++
+language is a machine-oriented programming language, involving pointer
+addresses, and we interact with various third-party or underlying APIs.
+Their type design may not be reasonable and type casting tends to occur
+in the adaptation process.
+
+Exception: When calling a function, if we do not want to process the
+result of the function, first consider whether this is your best choice.
+If you do not want to process the return value of the function, cast it
+to void.
+
+Rule 9.3.1 If type casting is required, use the type casting provided by the C++ instead of the C style.
+--------------------------------------------------------------------------------------------------------
+
+**Note**:
+
+The type casting provided by C++ is more targeted, easy to read, and
+more secure than the C style. C++ provides the following types of
+casting: - Type casting: 1. ``dynamic_cast``: Used to inherit the
+downstream transformation of the system. ``dynamic_cast`` has the type
+check function. Design the base class and derived class to avoid using
+dynamic_cast for casting. 2. ``static_cast``: Similar to the C style
+casting, which can be used to convert a value, or to convert the pointer
+or reference of a derived class into a base class pointer or reference.
+This casting is often used to eliminate type ambiguity brought on by
+multiple inheritance, which is relatively safe. If it is a pure
+arithmetic conversion, use the braces as stated in the following text.
+3. ``reinterpret_cast``: Used to convert irrelevant types.
+``reinterpret_cast`` forces the compiler to reinterpret the memory of a
+certain type of objects into another type, which is an unsafe
+conversion. It is recommended that ``reinterpret_cast`` be used as
+little as possible. 4. ``const_cast``: Used to remove the ``const``
+attribute of an object so that the object can be modified. You are
+advised to use ``const_cast`` as little as possible.
+
+-  Arithmetic conversion: (Supported by C++ 11 and later versions) If
+   the type information is not lost, for example, the casting from float
+   to double, or from int32 to int64, the braces syntax is recommended.
+
+.. code:: cpp
+
+     double d{ someFloat };
+     int64_t i{ someInt32 };
+
+Recommendation 9.3.1 Avoid using ``dynamic_cast``.
+--------------------------------------------------
+
+1. ``dynamic_cast`` depends on the RTTI of C++ so that the programmer
+   can identify the type of the object in C++ at run time.
+2. ``dynamic_cast`` indicates that a problem has occurred in the design
+   of the base class and derived class.The derived class destroys the
+   contract of the base class and it is necessary to use
+   ``dynamic_cast`` to convert the class to a subclass for special
+   processing. In this case, it is more desirable to improve the design
+   of the class, instead of using ``dynamic_cast`` to solve the problem.
+
+Recommendation 9.3.2 Avoid using ``reinterpret_cast``.
+------------------------------------------------------
+
+**Note**: ``reinterpret_cast`` is used to convert irrelevant types.
+Trying to use ``reinterpret_cast`` to force a type to another type
+destroys the security and reliability of the type and is an insecure
+casting method. Avoid casting between completely different types.
+
+Recommendation 9.3.3 Avoid using ``const_cast``.
+------------------------------------------------
+
+**Note**: The ``const_cast`` command is used to remove the ``const`` and
+``volatile`` properties of an object.
+
+The action of using a pointer or reference after the const_cast
+conversion to modify the const property of an object is undefined.
+
+.. code:: cpp
+
+   // Bad example:
+   const int i = 1024; 
+   int* p = const_cast<int*>(&i);
+   *p = 2048;      // The action is undefined.
+
+.. code:: cpp
+
+   // Bad example:
+   class Foo {
+   public:
+       Foo() : i(3) {}
+
+       void Fun(int v) 
+       {
+           i = v;
+       }
+
+   private:
+       int i;
+   };
+
+   int main(void)
+   {
+       const Foo f;
+       Foo* p = const_cast<Foo*>(&f);
+       p->Fun(8);  // The action is undefined.
+   }
+
+Resource Allocation and Release
+===============================
+
+Rule 9.4.1 When a single object is released, delete is used. When an array object is released, delete [] is used.
+-----------------------------------------------------------------------------------------------------------------
+
+Note: To delete a single object, use delete; to delete an array object,
+use delete []. The reasons are as follows:
+
+* new: Apply for memory from the system and call the corresponding constructor to initialize an object.
+* new[n]: Apply for memory for n objects and call the constructor n times for each object to initialize them.
+* delete: Call the corresponding destructor first and release the memory of an object.
+* delete[]: Call the corresponding destructor for each object and release their memory.
+
+If the usage of new and delete does not match this format, the results
+are unknown. For a non-class type, new and delete will not call the
+constructor or destructor.
+
+Bad example:
+
+.. code:: cpp
+
+   const int MAX_ARRAY_SIZE = 100;
+   int* numberArray = new int[MAX_ARRAY_SIZE];
+   ...
+   delete numberArray;
+   numberArray = NULL;
+
+Good example:
+
+.. code:: cpp
+
+   const int MAX_ARRAY_SIZE = 100;
+   int* numberArray = new int[MAX_ARRAY_SIZE];
+   ...
+   delete[] numberArray;
+   numberArray = NULL;
+
+Recommendation 9.4.1 Use the RAII feature to trace dynamic allocation.
+----------------------------------------------------------------------
+
+Note: RAII is an acronym for Resource Acquisition Is Initialization. It
+is a simple technology that controls program resources (such as memory,
+file handle, network connections, and mutexes) by using the object
+lifecycle.
+
+The common practice is as follows: When the object is constructed, the
+resource is obtained, and the access to the resource is controlled so
+that the resource is always valid in the life cycle of the object.
+Finally, the resource is released when the object is destructed. This
+approach has two advantages: - We do not need to explicitly release
+resources. - The resources required by the object are always valid
+throughout the lifecycle of the object. This way, you do not need to
+check the validity of the resources, which simplifies logic and improves
+efficiency.
+
+In the following example, RAII removes the need for explicit release of
+mutex resources.
+
+.. code:: cpp
+
+   class LockGuard {
+   public:
+       LockGuard(const LockType& lockType): lock_(lockType)
+       {
+           lock_.Aquire();
+       }
+       
+       ~LockGuard()
+       {
+           lock_.Relase();
+       }
+       
+   private:
+       LockType lock_;
+   };
+
+
+   bool Update()
+   {
+       LockGuard lockGuard(mutex);
+       if (...) {
+           return false;
+       } else {
+           // Data operations
+       }
+       
+       return true;
+   }
+
+Standard Template Library
+=========================
+
+The standard template library (STL) varies between products. The
+following table lists some basic rules and suggestions for each team.
+
+Rule 9.5.1 Do not save the pointer returned by c_str () of std::string.
+-----------------------------------------------------------------------
+
+Note: The C++ standard does not specify that the string::c_str ()
+pointer is permanently valid. Therefore, the STL implementation used can
+return a temporary storage area and release it quickly when calling
+string::c_str (). Therefore, to ensure the portability of the program,
+do not save the result of string::c_str (). Instead, call it directly.
+
+Example:
+
+.. code:: cpp
+
+   void Fun1()
+   {
+       std::string name = "demo";
+       const char* text = name.c_str(); // After the expression ends, the life cycle of name is still in use and the pointer is valid.
+
+       // If a non-const member function (such as operator[] and begin()) of the string type is invoked and the string is modified,
+       // The text may become unavailable or may not be the original string.
+       name = "test";
+       name[1] = '2';
+
+       // When the text pointer is used next time, the string is no longer "demo".
+   }
+
+   void Fun2()
+   {
+       std::string name = "demo";
+       std::string test = "test";
+       const char* text = (name + test).c_str(); // After the expression ends, the temporary object generated by the + operator may be destroyed, and the pointer may be invalid.
+
+       // When the text pointer is used next time, it no longer points to the valid memory space.
+   }
+
+Exception: In rare cases where high performance coding is required , you
+can temporarily save the pointer returned by string::c_str() to match
+the existing functions which support only the input parameters of the
+const char\* type. However, you should ensure that the lifecycle of the
+string object is longer than that of the saved pointer, and that the
+string object is not modified within the lifecycle of the saved pointer.
+
+Recommendation 9.5.1 Use std::string instead of char*.
+------------------------------------------------------
+
+Note: Using string instead of ``char*`` has the following advantages: 1.
+There is no need to consider the null character ’\0’at the end. 2. You
+can directly use operators such as ``+``, ``=``, and ``==``, and other
+character and string operation functions. 3. There is no need to
+consider memory allocation operations.This helps avoid explicit usage of
+``new`` and ``delete`` and the resulting errors.
+
+Note that in some STL implementations, string is based on the
+copy-on-write policy, which causes two problems. One is that the
+copy-on-write policy of some versions does not implement thread
+security, and the program breaks down in multi-threaded environments.
+Second, dangling pointers may be caused when a dynamic link library
+transfers the string based on the copy-on-write policy, due to the fact
+that reference count cannot be reduced when the library is unloaded.
+Therefore, it is important to select a reliable STL implementation to
+ensure the stability of the program.
+
+Exception: When an API of a system or other third-party library is
+called, only ``char*`` can be used for defined interfaces. However,
+before calling the interfaces, you can use string. When calling the
+interfaces, you can use ``string::c_str()`` to obtain the character
+pointer. When a character array is allocated as a buffer on the stack,
+you can directly define the character array without using string or
+containers such as ``vector<char>``.
+
+Rule 9.5.2 Do not use auto_ptr.
+-------------------------------
+
+Note: The ``std::auto_ptr`` in the STL library has an implicit ownership
+transfer behavior. The code is as follows:
+
+.. code:: cpp
+
+   auto_ptr<T> p1(new T);
+   auto_ptr<T> p2 = p1;
+
+After the second line of statements is executed, p1 does not point to
+the object allocated in line 1 and becomes ``NULL``. Therefore,
+``auto_ptr`` cannot be placed in any standard containers. This ownership
+transfer behavior is not expected. In scenarios where ownership must be
+transferred, implicit transfer should not be used. This often requires
+the programmer to keep extra attention on code that uses ``auto_ptr``,
+otherwise access to a null pointer will occur. There are two common
+scenarios for using auto_ptr . One is to transfer it as a smart pointer
+to outside the function that generates the auto_ptr , and the other is
+to use auto_ptr as the RAII management class. Resources are
+automatically released when the lifecycle of auto_ptr expires. In the
+first scenario, you can use std::shared_ptr instead. In the second
+scenario, you can use std::unique_ptr in the C++ 11 standard.
+std::unique_ptr is a substitute for std::auto_ptr and supports explicit
+ownership transfer.
+
+Exception: Before the C++ 11 standard is widely used, std::auto_ptr can
+be used in scenarios where ownership needs to be transferred. However,
+it is recommended that std::auto_ptr be encapsulated. The copy
+constructor and assignment operator of the encapsulation class should
+not be used in a standard container.
+
+Recommendation 9.5.2 Use the new standard header files.
+-------------------------------------------------------
+
+Note: When using the standard header file of C++, use ``<cstdlib>``
+instead of ``<stdlib.h>``.
+
+Usage of const
+==============
+
+Add the keyword const before the declared variable or parameter
+(example: ``const int foo``) to prevent the variable from being tampered
+with. Add the const qualifier to the function in the class (example:
+``class Foo {int Bar (char c) const;} ;``) to make sure the function
+does not modify the status of the class member variable. const
+variables, data members, functions, and parameters ensure that the type
+detection during compilation is accurate and errors are found as soon as
+possible. Therefore, we strongly recommend that const be used in any
+possible case. Sometimes it is better to use constexpr from C++ 11 to
+define real constants.
+
+Rule 9.6.1 For formal parameters of pointer and reference types, if the parameters do not need to be modified, use const.
+-------------------------------------------------------------------------------------------------------------------------
+
+Unchanging values are easier to understand, trace, and analyze.
+``const`` is used as the default option and is checked during
+compilation to make the code more secure and reliable.
+
+.. code:: cpp
+
+   class Foo;
+
+   void PrintFoo(const Foo& foo);
+
+Rule 9.6.2 For member functions that do not modify member variables, use const.
+-------------------------------------------------------------------------------
+
+Declare the member function as ``const`` whenever possible. The access
+function should always be const. So long as the function of a member is
+not modified, the function is declared with const. When you need to
+modify data members in a virtual function, take all classes in the
+inheritance chain into account instead of only focusing on the
+implementation of a single class.
+
+.. code:: cpp
+
+   class Foo {
+   public:
+
+       // ...
+
+       int PrintValue() const // const modifies member functions and does not modify member variables.
+       {
+           std::cout << value_ << std::endl;
+       }
+
+       int GetValue() const  // const modifies member functions and does not modify member variables.
+       {
+           return value_;
+       }
+
+   private:
+       int value_;
+   };
+
+Recommendation 9.6.1 Member variables that will not be modified after initialization should be defined as constants.
+--------------------------------------------------------------------------------------------------------------------
+
+.. code:: cpp
+
+   class Foo {
+   public:
+       Foo(int length) : dataLength_(length) {}
+   private:
+       const int dataLength_;  
+   };
+
+.. _exceptions-1:
+
+Exceptions
+===========
+
+Recommendation 9.7.1 If the function does not throw an exception, the declaration is ``noexcept``.
+--------------------------------------------------------------------------------------------------
+
+**Reasons:** 1. If the function does not throw an exception, the
+declaration is ``noexcept``, which enables the compiler to optimize the
+function to the maximum extent, for example, reducing the execution
+paths and improving the efficiency of exiting when an error occurs. 2.
+For STL containers such as ``vector``, to ensure the interface
+robustness, if the ``move`` constructor of saved items is not declared
+as ``noexcept``, the ``copy machanism`` instead of the
+``move machanism`` is used when the items are removed from the
+container. This would cause performance loss risks. If the function does
+not throw an exception, or a program does not intercept and process an
+exception thrown by the function, new ``noexcept`` keywords can be used
+to modify the function, indicating that the function does not throw an
+exception or the thrown exception is not intercepted or processed. For
+example:
+
+.. code:: cpp
+
+   extern "C" double sqrt(double) noexcept;  // No exceptions are thrown.
+
+   // noexcept can still be used when exceptions may be thrown.
+   // The exception of memory exhaustion is not processed. The function is simply declared as noexcept.
+   std::vector<int> MyComputation(const std::vector<int>& v) noexcept
+   {
+       std::vector res = v;    // Exceptions may be thrown.
+       // do something
+       return res;
+   }
+
+**Example:**
+
+.. code:: cpp
+
+   RetType Function(Type params) noexcept;   // Maximized optimization
+   RetType Function(Type params) noexcept;   // No optimization
+
+   // Declaration as noexcept for the move operation of std::vector is needed.
+   class Foo1 {
+   public:
+       Foo1(Foo1&& other);  // no noexcept
+   };
+
+   std::vector<Foo1> a1;
+   a1.push_back(Foo1());
+   a1.push_back(Foo1()); // The copy constructor is called to enable the container expansion and removal of existing items.
+
+   class Foo2 {
+   public:
+       Foo2(Foo2&& other) noexcept;
+   };
+
+   std::vector<Foo2> a2;
+   a2.push_back(Foo2());
+   a2.push_back(Foo2()); //Triggers container expansion and invokes the move constructor to move existing elements.
+
+**Note** The default constructor, destructor, ``swap`` function, and
+``move`` operator should not throw an exception.
+
+Templates
+=========
+
+Template programming allows for extremely flexible interfaces that are
+type safe and high performance, enabling reuse of code of different
+types but with the same behavior.
+
+The disadvantages of template proramming are as follows:
+
+1. The techniques used in template programming are often obscure to
+   anyone but language experts. Code that uses templates in complicated
+   ways is often unreadable, and is hard to debug or maintain.
+2. Template programming often leads to extremely poor compiler time
+   error messages: even if an interface is simple, complicated
+   implementation details become visible when the user does something
+   wrong.
+3. If the template is not properly used, the code will be over expanded
+   during runtime.
+4. It is difficult to modify or refactor template code. The template
+   code is expanded in multiple contexts, and it is hard to verify that
+   the transformation makes sense in all of them.
+
+Therefore, it is recommended that \_\_ template programming be used only
+in a small number of basic components and basic data structure__. When
+using the template programming, minimize the **complexity as much as
+possible, and** avoid exposing the template__. It is better to hide
+programming as an implementation detail whenever possible, so that
+user-facing headers are readable. And you should write sufficiently
+detailed comments for code that uses templates.
+
+Macros
+======
+
+In the C++ language, it is strongly recommended that complex macros be
+used as little as possible. - For constant definitions, use ``const`` or
+``enum`` as stated in the preceding sections. - For macro functions, try
+to be as simple as possible, comply with the following principles, and
+use inline functions and template functions for replacement.
+
+.. code:: cpp
+
+   // The macro function is not recommended.
+   #define SQUARE(a, b) ((a) * (b)) 
+
+   // Use the template function and inline function as a replacement.
+   template<typename T> T Square(T a, T b) { return a * b; }
+
+For details about how to use macros, see the related chapters about the
+C language specifications. **Exception**: For some common and mature
+applications, for example, encapsulation for new and delete, the use of
+macros can be retained.
+
+10 Modern C++ Features
+**********************
+
+As the ISO released the C++ 11 language standard in 2011 and released
+the C++ 17 in March 2017, the modern C++ (C++ 11/14/17) adds a large
+number of new language features and standard libraries that improve
+programming efficiency and code quality. This chapter describes some
+guidelines for modern C++ use, to avoid language pitfalls.
+
+Code Simplicity and Security Improvement
+========================================
+
+Recommendation 10.1.1 Use ``auto`` properly.
+--------------------------------------------
+
+**Reasons**
+
+-  ``auto`` can help you avoid writing verbose, repeated type names, and
+   can also ensure initialization when variables are defined.
+-  The ``auto`` type deduction rules are complex and need to be read
+   carefully.
+-  If using ``auto`` makes the code clearer, use a specific type of it
+   and use it only for local variables.
+
+**Example**
+
+.. code:: cpp
+
+   // Avoid verbose type names.
+   std::map<string, int>::iterator iter = m.find(val);
+   auto iter = m.find(val);
+
+   // Avoid duplicate type names.
+   class Foo {...};
+   Foo* p = new Foo;
+   auto p = new Foo;
+
+   // Ensure that the initialization is successful.
+   int x;    // The compilation is correct but the variable is not initialized.
+   auto x;   // The compilation failed. Initialization is needed.
+
+``auto`` type deduction may cause the following problems:
+
+.. code:: cpp
+
+   auto a = 3;           // int
+   const auto ca = a;    // const int
+   const auto& ra = a;   // const int&
+   auto aa = ca;         // int, const and reference are neglected.
+   auto ila1 = { 10 };   // std::initializer_list<int>
+   auto ila2{ 10 };      // std::initializer_list<int>
+
+   auto&& ura1 = x;      // int&
+   auto&& ura2 = ca;     // const int&
+   auto&& ura3 = 10;     // int&&
+
+   const int b[10];
+   auto arr1 = b;        // const int*
+   auto& arr2 = b;       // const int(&)[10]
+
+If you do not pay attention to ``auto`` type deduction and ignore the
+reference, hard-to-find performance problems may be created.
+
+.. code:: cpp
+
+   std::vector<std::string> v;
+   auto s1 = v[0]; // auto deduction changes s1 to std::string in order to copy v[0].
+
+If ``auto`` is used to define an interface, such as a constant in a
+header file, the type may be changed if the developer has modified the
+value.
+
+Rule 10.1.1 Use the keyword ``override`` when rewriting virtual functions.
+--------------------------------------------------------------------------
+
+**Reason:** The keyword ``override`` ensures that the function is a
+virtual function and an overridden virtual function of the base class.
+If the subclass function is different from the base class function
+prototype, a compilation alarm is generated. ``final`` also ensures that
+virtual functions are not overridden by subclasses.
+
+If you modify the prototype of a base class virtual function but forget
+to modify the virtual function overridden by the subclass, you can find
+inconsistency during compilation. You can also avoid forgetting to
+modify the overridden function when there are multiple subclasses.
+
+**Example**
+
+.. code:: cpp
+
+   class Base {
+   public:
+       virtual void Foo();
+       virtual void Foo(int var);
+       void Bar();
+   };
+
+   class Derived : public Base {
+   public:
+       void Foo() const override; // Compilation failed: derived::Foo is different from that of the prototype of base::Foo and is not overridden.
+       void Foo() override;       // Compilation successful: derived::Foo overrode base::Foo.
+       void Foo(int var) final;   // Compilation successful: Derived::Foo(int) rewrites Base::Foo(int), and the derived class of Derived cannot override this function.
+       void Bar() override;       // Compilation failed: base::Bar is not a virtual function.
+   };
+
+**Summary** 1. When defining the virtual function for the first time
+based on the base class, use the keyword ``virtual``. 2. When overriding
+the virtual function by a subclass in a base class, including
+destructors, use the keyword ``override`` or ``final`` instead of
+``virtual``. 3. For the non-virtual function, do not use ``virtual`` or
+``override``.
+
+Rule: 10.1.2 Use the keyword ``delete`` to delete functions.
+------------------------------------------------------------
+
+**Reason** The ``delete`` keyword is clearer and the application scope
+is wider than a class member function that is declared as private and
+not implemented.
+
+**Example:**
+
+.. code:: cpp
+
+   class Foo {
+   private:
+       // Whether the copy structure is deleted or not is unknown because usually only the header file is checked.
+       Foo(const Foo&);
+   };
+
+   class Foo {
+   public:
+       // Explicitly delete the copy assignment operator.
+       Foo& operator=(const Foo&) = delete;
+   };
+
+The ``delete`` keyword can also be used to delete non-member functions.
+
+.. code:: cpp
+
+   template<typename T>
+   void Process(T value);
+
+   template<>
+   void Process<void>(void) = delete;
+
+Rule 10.1.3 Use ``nullptr`` instead of ``NULL`` or ``0``.
+---------------------------------------------------------
+
+**Reason:** For a long time, C++ has not had a keyword that represents a
+null pointer, which is embarrassing:
+
+.. code:: cpp
+
+   #define NULL ((void *)0)
+
+   char* str = NULL;   // Error: void* cannot be automatically converted to char*.
+
+   void(C::*pmf)() = &C::Func;
+   if (pmf == NULL) {} // Error: void* cannot be automatically converted to the pointer that points to the member function.
+
+If ``NULL`` is defined as ``0`` or ``0L``, the above problems can be
+solved.
+
+Alternatively, use ``0`` directly in places where null pointers are
+required. However, another problem occurs. The code is not clear,
+especially when ``auto`` is used for automatic deduction.
+
+.. code:: cpp
+
+   auto result = Find(id);
+   if (result == 0) {  // Does Find() return a pointer or an integer?
+       // do something
+   }
+
+Literally ``0`` is of the ``int`` type (``0L`` is the ``long`` type).
+Therefore, neither ``NULL`` nor ``0`` is a pointer type. When a function
+of the pointer or integer type is overloaded, ``NULL`` or ``0`` calls
+only the overloaded pointer function.
+
+.. code:: cpp
+
+   void F(int);
+   void F(int*);
+
+   F(0);      // Call F(int) instead of F(int*).
+   F(NULL);   // Call F(int) instead of F(int*).
+
+In addition, ``sizeof(NULL) == sizeof(void*)`` does not always make
+sense, which is a potential risk.
+
+Summary: If ``0`` or ``0L`` is directly used, the code is not clear and
+type security cannot be ensured. If ``NULL`` is used, the type security
+cannot be ensured. These are all potential risks.
+
+``nullptr`` has many advantages. It literally represents the null
+pointer and makes the code clearer. More to the point, it is no longer
+an integer type.
+
+``nullptr`` is of the ``std::nullptr_t`` type. ``std::nullptr_t`` can be
+implicitly converted into all original pointer types, so that
+``nullptr`` can represent a null pointer that points to any type.
+
+.. code:: cpp
+
+   void F(int);
+   void F(int*);
+   F(nullptr);   // Call F(int*).
+
+   auto result = Find(id);
+   if (result == nullptr) {  // Find() returns a pointer.
+       // do something
+   }
+
+Rule 10.1.4 Use ``using`` instead of ``typedef``.
+-------------------------------------------------
+
+For versions earlier than ``C++11``, you can define the alias of the
+type by using ``typedef``. No one wants to repeat code like
+``std::map<uint32_t, std::vector<int>>``.
+
+.. code:: cpp
+
+   typedef std::map<uint32_t, std::vector<int>> SomeType;
+
+Using alias for the type is actually encapsulating the type. This
+encapsulation makes the code clearer, and to a large extent avoids the
+bulk modification caused by the type change. For versions supporting C++
+11 features, ``using`` is provided to implement ``alias declarations``:
+
+.. code:: cpp
+
+   using SomeType = std::map<uint32_t, std::vector<int>>;
+
+Compare the two formats:
+
+.. code:: cpp
+
+   typedef Type Alias;   // It cannot be told whether the original Type or Alias is at the front.
+   using Alias = Type;   // The format confirms to the assignment rule. It is easy to understand and helps reduce errors.
+
+If this is not enough to prove the advantages of ``using``, the alias
+template may be a better example:
+
+.. code:: cpp
+
+   //: Only one line of code is need to define an alias for a template.
+   template<class T>
+   using MyAllocatorVector = std::vector<T, MyAllocator<T>>;
+
+   MyAllocatorVector data;       // An alias for a template defined with "using".
+
+   template<class T>
+   class MyClass {
+   private:
+       MyAllocatorVector data_;   // Another.
+   };
+
+``typedef`` does not support alias templates and they have to be hacked
+in.
+
+.. code:: cpp
+
+   // A template is used for packaging typedef. Therefore, a template class is needed.
+   template<class T>
+   struct MyAllocatorVector {
+       typedef std::vector<T, MyAllocator<T>> type;
+   };
+
+   MyAllocatorVector::type data;  // ::type needs to be added when using typedef to define an alias.
+
+   template<class T>
+   class MyClass {
+   private:
+       typename MyAllocatorVector::type data_;  // For a template class, typename is also needed in addition to ::type.
+   };
+
+Rule 10.1.5 Do not use std::move to operate the const object.
+-------------------------------------------------------------
+
+Literally, ``std::move`` means moving an object. The const object cannot
+be modified and cannot be moved. Therefore, using ``std::move`` to
+operate the const object may confuse code readers. Regarding actual
+functions, ``std::move`` converts an object to the rvalue reference
+type. It can convert the const object to the rvalue reference of const.
+Because few types define the move constructor and the move assignment
+operator that use the const rvalue reference as the parameter, the
+actual function of code is often degraded to object copy instead of
+object movement, which brings performance loss.
+
+**Bad example:**
+
+.. code:: cpp
+
+   std::string g_string;
+   std::vector<std::string> g_stringList;
+
+   void func()
+   {
+       const std::string myString = "String content";
+       g_string = std::move(myString); // Bad: myString is not moved. Instead, it is copied.
+       const std::string anotherString = "Another string content";
+       g_stringList.push_back(std::move(anotherString));    // Bad: anotherString is not moved. Instead, it is copied.
+   }
+
+Smart Pointers
+==============
+
+Rule 10.2.1 Use smart pointers instead of a raw pointer to manage resources.
+----------------------------------------------------------------------------
+
+**Reason:** Avoid resource leakage.
+
+**Example:**
+
+.. code:: cpp
+
+   void Use(int i)
+   {
+       auto p = new int {7};               // Bad: Initializing local pointers with new.
+       auto q = std::make_unique(9);  // Good: Guarantee that memory is released.
+       if (i > 0) {
+           return;                           // Return and possible leak.
+       }
+       delete p;                           // Too late to salvage.
+   }
+
+**Exception:** Raw pointers can be used in scenarios requiring high
+performance and compatibility.
+
+Rule 10.2.2 Use ``unique_ptr`` instead of ``shared_ptr``.
+---------------------------------------------------------
+
+**Reasons:** 1. Using ``shared_ptr`` a lot has an overhead (atomic
+operations on the ``shared_ptr``\ s reference count have a measurable
+cost). 2. Shared ownership in some cases (such as circular dependency)
+may create objects that can never be released. 3. Shared ownership can
+be an attractive alternative to careful ownership design but it may
+obfuscate the design of a system.
+
+Rule 10.2.3 Use ``std::make_unique`` instead of ``new`` to create a ``unique_ptr``.
+-----------------------------------------------------------------------------------
+
+**Reasons:** 1. ``make_unique`` provides a simpler creation method. 2.
+``make_unique`` ensures the exception safety of complex expressions.
+
+**Example:**
+
+.. code:: cpp
+
+   // Bad: MyClass appears twice, which carries a risk of inconsistency.
+   std::unique_ptr<MyClass> ptr(new MyClass(0, 1));
+   // Good: MyClass appears once and there is no possibility of inconsistency.
+   auto ptr = std::make_unique<MyClass>(0, 1);
+
+Recurrence of types may cause serious problems, and it is difficult to
+find them:
+
+.. code:: cpp
+
+   // The code compiles fine, but new and delete usage does not match.
+   std::unique_ptr<uint8_t> ptr(new uint8_t[10]);
+   std::unique_ptr<uint8_t[]> ptr(new uint8_t);
+   // No exception safety: The compiler may calculate parameters in the following order:
+   // 1. Allocate the memory of Foo.
+   // 2. Construct Foo.
+   // 3. Call Bar.
+   // 4. Construct unique_ptr<Foo>.
+   // If Bar throws an exception, Foo is not destroyed and a memory leak occurs.
+   F(unique_ptr<Foo>(new Foo()), Bar());
+
+   // Exception safety: Calling of function is not interrupted.
+   F(make_unique<Foo>(), Bar());
+
+**Exception:** ``std::make_unique`` does not support user-defined
+``deleter``. In the scenario where the ``deleter`` needs to be
+customized, it is recommended that ``make_unique`` be implemented in the
+customized version’s own namespace. Using ``new`` to create
+``unique_ptr`` with the user-defined ``deleter`` is the last choice.
+
+Rule 10.2.4 Create ``shared_ptr`` by using ``std::make_shared`` instead of ``new``.
+-----------------------------------------------------------------------------------
+
+**Reason:** In addition to the consistency factor similar to that in
+``std::make_unique`` when using ``std::make_shared``, performance is
+also a factor to consider. ``std::shared_ptr`` manages two entities: \*
+Control block (storing reference count, ``deleter``, etc.) \* Managed
+objects
+
+When ``std::make_shared`` creates ``std::shared_ptr``, it allocates
+sufficient memory for storing control blocks and managed objects on the
+heap at a time. When ``std::shared_ptr<MyClass>(new MyClass)``\ is used
+to create a ``std::shared_ptr``, not only does ``new MyClass`` trigger
+heap allocation, but the constructor function of ``std::shard_ptr``
+triggers a second heap allocation, resulting in extra overhead.
+
+**Exception:** Similar to ``std::make_unique``, ``std::make_shared``
+does not support ``deleter`` customization.
+
+Lambda
+======
+
+Recommendation 10.3.1 Use ``lambda`` to capture local variables or write local functions when normal functions do not work.
+---------------------------------------------------------------------------------------------------------------------------
+
+**Reason:** Functions cannot capture local variables or be declared at
+local scope. If you need those things, choose ``lambda`` instead of
+handwritten ``functor``. On the other hand, ``lambda`` and ``functor``
+objects do not support overloading. If overloading is required, use a
+function. If both ``lambda`` and functions work, a function is
+preferred. Use the simplest tool.
+
+**Example:**
+
+.. code:: cpp
+
+   // Write a function that accepts only an int or string.
+   // -- Overloading is more natural.
+   void F(int);
+   void F(const string&);
+
+   // The local state needs to be captured or appear in the statement or expression range.
+   // -- A lambda is more natural.
+   vector<Work> v = LotsOfWork();
+   for (int taskNum = 0; taskNum < max; ++taskNum) {
+       pool.Run([=, &v] {...});
+   }
+   pool.Join();
+
+Rule 10.3.1 Avoid capturing by reference in lambdas that will not be used locally.
+----------------------------------------------------------------------------------
+**Reason:** Using ``lambdas`` at a “nonlocal” scope includes returning,
+storing on the heap, and passing to another thread. Local pointers and
+references should not outlive their scope. Capturing by reference in
+``lambdas`` indicates storing a reference to a local object. If this
+leads to a reference that exceeds the lifecycle of a local variable,
+capturing by reference should not be used.
+
+**Example:**
+
+.. code:: cpp
+
+   // Bad
+   void Foo()
+   {
+       int local = 42;
+       // Capture a reference to a local variable.
+       // After the function returns results, local no longer exists,
+       // Process() call will have undefined behavior.
+       threadPool.QueueWork([&]{ Process(local); });
+   }
+
+   // Good
+   void Foo()
+   {
+       int local = 42;
+       // Capture a copy of local.
+       // Since a copy of local is made, it will be always available for the call.
+       threadPool.QueueWork([=]{ Process(local); });
+   }
+
+Recommendation 10.3.2 All variables are explicitly captured if ``this`` is captured.
+------------------------------------------------------------------------------------
+
+**Reason:** The ``[=]`` in the member function seems to indicate
+capturing by value but actually it is capturing data members by
+reference because it captures the invisible ``this`` pointer by value.
+Generally, it is recommended that capturing by reference be avoided. If
+it is necessary to do so, write ``this`` explicitly.
+
+**Example:**
+
+.. code:: cpp
+
+   class MyClass {
+   public:
+       void Foo()
+       {
+           int i = 0;
+
+           auto Lambda = [=]() { Use(i, data_); };   // Bad: It looks like we are copying or capturing by value but member variables are actually captured by reference.
+
+           data_ = 42;
+           Lambda(); // Call use(42);
+           data_ = 43;
+           Lambda(); // Call use(43);
+
+           auto Lambda2 = [i, this]() { Use(i, data_); }; // Good: the most explicit and least confusing method.
+       }
+
+   private:
+       int data_ = 0;
+   };
+
+Recommendation 10.3.3 Avoid default capture modes.
+--------------------------------------------------
+
+**Reason:** The lambda expression provides two default capture modes:
+by-reference (&) and by-value (=). By default, the “by-reference”
+capture mode will implicitly capture the reference of all local
+variables, which will easily lead to dangling references. By contrast,
+explicitly writing variables that need to be captured can make it easier
+to check the lifecycle of an object and reduce the possibility of making
+a mistake. By default, the “by-value” capture mode will implicitly
+capture this pointer, and it is difficult to find out which variables
+the lambda function depends on. If a static variable exists, the reader
+mistakenly considers that the lambda has copied a static variable.
+Therefore, it is required to clearly state the variables that lambda
+needs to capture, instead of using the default capture mode.
+
+**Bad example:**
+
+.. code:: cpp
+
+   auto func()
+   {
+       int addend = 5;
+       static int baseValue = 3;
+
+       return [=]() {  // Only addend is actually copied.
+           ++baseValue;    // The modification will affect the value of the static variable.
+           return baseValue + addend;
+       };
+   }
+
+**Good example:**
+
+.. code:: cpp
+
+   auto func()
+   {
+       int addend = 5;
+       static int baseValue = 3;
+
+       return [addend, baseValue = baseValue]() mutable {  // Uses the C++14 capture initialization to copy a variable.
+           ++baseValue;    // Modifying the copy of a static variable does not affect the value of the static variable.
+           return baseValue + addend;
+       };
+   }
+
+Reference: Effective Modern C++: Item 31: Avoid default capture modes.
+
+Interfaces
+==========
+
+Recommendation 10.4.1 Use ``T*`` or ``T&`` arguments instead of a smart pointer in scenarios where ownership is not involved.
+-----------------------------------------------------------------------------------------------------------------------------
+
+**Reasons:** 1. Passing a smart pointer to transfer or share ownership
+should only be used when the ownership mechanism is explicitly required.
+2. Passing a smart pointer (for example, passing the ``this`` smart
+pointer) restricts the use of a function to callers using smart
+pointers. 3. Passing a shared smart pointer adds a runtime performance
+cost.
+
+**Example:**
+
+.. code:: cpp
+
+   // Accept any int*.
+   void F(int*);
+
+   // Accept only integers for which you want to transfer ownership.
+   void G(unique_ptr<int>);
+
+   // Accept only integers for which you want to share ownership.
+   void G(shared_ptr<int>);
+
+   // Does not need to change the ownership but requires ownership of the caller.
+   void H(const unique_ptr<int>&);
+
+   // Accept any int.
+   void H(int&);
+
+   // Bad
+   void F(shared_ptr<Widget>& w)
+   {
+       // ...
+       Use(*w); // When only w is used, lifecycle management is not required.
+       // ...
+   };