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

2021-01-21 12:05:55 +08:00
 XIVN1987

下面是我阅读《 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修饰

1494 次点击
所在节点    C++
1 条回复
auto8888
2021-01-21 16:54:11 +08:00
这个知识点还是相对简单的

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

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

需要更改参数值就传引用

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

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/746970

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX