增加 const 的指针与引用

https://github.com/huihut/interview/issues/12#issuecomment-597204112
This commit is contained in:
huihut 2020-03-11 01:16:32 +08:00
parent 2dd3a8bf52
commit 49f218e32c
2 changed files with 18 additions and 0 deletions

View File

@ -54,6 +54,15 @@
3. 修饰引用指向常量的引用reference to const用于形参类型即避免了拷贝又避免了函数对值的修改
4. 修饰成员函数,说明该成员函数内不能修改成员变量。
#### const 的指针与引用
* 指针
* 指向常量的指针pointer to const
* 自身是常量的指针常量指针const pointer
* 引用
* 指向常量的引用reference to const
* 没有 const reference因为引用本身就是 const pointer
> (为了方便记忆可以想成)被 const 修饰(在 const 后面)的值不可改变,如下文使用例子中的 `p2`、`p3`
#### 使用

View File

@ -16,6 +16,15 @@
3. 修饰引用指向常量的引用reference to const用于形参类型即避免了拷贝又避免了函数对值的修改
4. 修饰成员函数,说明该成员函数内不能修改成员变量。
#### const 的指针与引用
* 指针
* 指向常量的指针pointer to const
* 自身是常量的指针常量指针const pointer
* 引用
* 指向常量的引用reference to const
* 没有 const reference因为引用本身就是 const pointer
> (为了方便记忆可以想成)被 const 修饰(在 const 后面)的值不可改变,如下文使用例子中的 `p2`、`p3`
#### 使用