zoukankan      html  css  js  c++  java
  • 【C++ 】std::ref()和std::cref()

      转自绿色冰点C++11 std::ref使用场景

      C++本身有引用(&),为什么C++11又引入了std::ref(或者std::cref)?使用std::ref可以在模板传参的时候传入引用,否则只能传值。主要是考虑函数式编程(如std::bind)在使用时,是对参数直接拷贝,而不是引用。如下例子:

    复制代码
    #include <functional>
    #include <iostream>
     
    void f(int& n1, int& n2, const int& n3)
    {
        std::cout << "In function: " << n1 << ' ' << n2 << ' ' << n3 << '
    ';
        ++n1; // increments the copy of n1 stored in the function object
        ++n2; // increments the main()'s n2
        // ++n3; // compile error
    }
     
    int main()
    {
        int n1 = 1, n2 = 2, n3 = 3;
        std::function<void()> bound_f = std::bind(f, n1, std::ref(n2), std::cref(n3));
        n1 = 10;
        n2 = 11;
        n3 = 12;
        std::cout << "Before function: " << n1 << ' ' << n2 << ' ' << n3 << '
    ';
        bound_f();
        std::cout << "After function: " << n1 << ' ' << n2 << ' ' << n3 << '
    ';
    }
    复制代码

    Output:

    Output:
    Before function: 10 11 12
    In function: 1 11 12
    After function: 10 12 12

      上述代码在执行std::bind后,在函数f()中n1的值仍然是1,n2和n3改成了修改的值。说明std::bind使用的是参数的拷贝而不是引用。具体为什么std::bind不使用引用,可能确实有一些需求,使得C++11的设计者认为默认应该采用拷贝,如果使用者有需求,加上std::ref即可。

      &是类型说明符, std::ref 是一个函数,返回 std::reference_wrapper类型。另外std::cref() 用于const引用的版本。

  • 相关阅读:
    算法: 整数中1出现的次数(从1到n整数中1出现的次数)
    健身:肩部训练
    算法: 字符串的排列
    不能浮躁,还是需要沉淀;
    算法:从上往下打印二叉树
    健身:手臂训练
    抛出错误
    记录错误
    调用栈
    try/except/finally
  • 原文地址:https://www.cnblogs.com/chen-cs/p/13059896.html
Copyright © 2011-2022 走看看