diff --git a/docs/faq/basic_concepts/const.rst b/docs/faq/basic_concepts/const.rst index 6edbba9e..38351af3 100644 --- a/docs/faq/basic_concepts/const.rst +++ b/docs/faq/basic_concepts/const.rst @@ -21,14 +21,18 @@ 读者看到 const 对象时, 必然假设该对象不会被修改;如果人为打破这种约定, 只会让代码难以阅读, 增加维护成本. ======================================================================================================================== -:cpp:`const` 与引用 +交叉内容 ======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ +:cpp:`const` 与引用 +------------------------------------------------------------------------------------------------------------------------ + .. include:: cross/const-reference.irst -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ :cpp:`const` 与指针 -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ .. include:: cross/const-pointer.irst diff --git a/docs/faq/basic_concepts/function.rst b/docs/faq/basic_concepts/function.rst index e6a5cfdc..82997681 100644 --- a/docs/faq/basic_concepts/function.rst +++ b/docs/faq/basic_concepts/function.rst @@ -107,9 +107,13 @@ - :cpp:`int available_tickets()`. ======================================================================================================================== -函数指针 (function pointer) +交叉内容 ======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ +函数指针 (function pointer) +------------------------------------------------------------------------------------------------------------------------ + .. include:: cross/function-pointer.irst ======================================================================================================================== diff --git a/docs/faq/basic_concepts/pointer.rst b/docs/faq/basic_concepts/pointer.rst index de6a6c12..fccfc72f 100644 --- a/docs/faq/basic_concepts/pointer.rst +++ b/docs/faq/basic_concepts/pointer.rst @@ -18,14 +18,18 @@ pointer = &another_value; // pointer 现在存储 &another_value, 于是指向 another_value ======================================================================================================================== -指针与 :cpp:`const` +交叉内容 ======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ +指针与 :cpp:`const` +------------------------------------------------------------------------------------------------------------------------ + .. include:: cross/const-pointer.irst -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ 函数指针 (function pointer) -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ .. include:: cross/function-pointer.irst diff --git a/docs/faq/basic_concepts/reference.rst b/docs/faq/basic_concepts/reference.rst index 942003f5..a5107409 100644 --- a/docs/faq/basic_concepts/reference.rst +++ b/docs/faq/basic_concepts/reference.rst @@ -12,14 +12,18 @@ ref = 3; // 通过引用访问对象, 使得 value = 3 ======================================================================================================================== -引用与 :cpp:`const` +交叉内容 ======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ +引用与 :cpp:`const` +------------------------------------------------------------------------------------------------------------------------ + .. include:: cross/const-reference.irst -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ 引用与值类别 -======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ .. include:: cross/reference-value_category.irst diff --git a/docs/faq/basic_concepts/value_category.rst b/docs/faq/basic_concepts/value_category.rst index cdb9cd5e..d55703d6 100644 --- a/docs/faq/basic_concepts/value_category.rst +++ b/docs/faq/basic_concepts/value_category.rst @@ -19,9 +19,13 @@ 这里的解释是通用解释, 实际表现可能由于编译器、编译器版本、编译选项、标准版本等存在差异. ======================================================================================================================== -值类别与引用 +交叉内容 ======================================================================================================================== +------------------------------------------------------------------------------------------------------------------------ +值类别与引用 +------------------------------------------------------------------------------------------------------------------------ + .. include:: cross/reference-value_category.irst ========================================================================================================================