跳至主要內容
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?

4563博客

全新的繁體中文 WordPress 網站
  • 首頁
  • 《C++ Primer》中“Argument Passing”章节总结
未分類
5 2 月 2021

《C++ Primer》中“Argument Passing”章节总结

《C++ Primer》中“Argument Passing”章节总结

資深大佬 : XIVN1987 8

下面是我阅读《 C++ Primer 》中“Argument Passing”章节做的一个小结,,大家看看有没有错误

参数

passed by value

the value of the argument is copied to the parameter, nothing the function does to the parameter can affect the argument

passed by pointer

behave like passed by value, the value of the argument pointer is copied to the parameter pointer, the two pointers are distinct. However, a pointer also gives us indirect access to the object to which that pointer points.

修改 argument pointer 本身不会影响 parameter pointer,但通过 argument pointer 修改它指向的对象,会同样修改 parameter pointer 指向的对象,因为它们指向同一个对象。

passed by reference

operations on a reference are actually operations on the object to which the reference refers, often used to allow a function to change the value of its arguments

引用传参有两个作用:

  • 避免拷贝
  • 修改被引用对象的值,实现多返回值效果

对于原始类型参数,拷贝代价很小,只有当需要利用它返回额外信息时才需要引用传参

对于复合类型参数,引用传参一般是为了避免拷贝,不会在函数内部给它重新赋值,因此一般会用const修饰

大佬有話說 (1)

  • 資深大佬 : auto8888

    这个知识点还是相对简单的

    函数参数 基本类型可以直接传值

    符合类型传常引用,还能避免无意更改

    需要更改参数值就传引用

    引用是 c++才有的,C 没有

文章導覽

上一篇文章
下一篇文章

AD

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

51la

4563博客

全新的繁體中文 WordPress 網站
返回頂端
本站採用 WordPress 建置 | 佈景主題採用 GretaThemes 所設計的 Memory
4563博客
  • Hostloc 空間訪問刷分
  • 售賣場
  • 廣告位
  • 賣站?
在這裡新增小工具