V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
XIVN1987
V2EX  ›  C++

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

  •  
  •   XIVN1987 · 2021-01-21 12:05:55 +08:00 · 1457 次点击
    这是一个创建于 1163 天前的主题,其中的信息可能已经有所发展或是发生改变。

    下面是我阅读《 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 条回复    2021-01-21 16:54:11 +08:00
    auto8888
        1
    auto8888  
       2021-01-21 16:54:11 +08:00
    这个知识点还是相对简单的

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

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

    需要更改参数值就传引用

    引用是 c++才有的,C 没有
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2580 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 15:38 · PVG 23:38 · LAX 08:38 · JFK 11:38
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.