赞
踩
std::ref只是尝试模拟引用传递,并不能真正变成引用,在非模板情况下,std::ref根本没法实现引用传递,只有模板自动推导类型时,ref能用包装类型reference_wrapper来代替原本会被识别的值类型,而reference_wrapper能隐式转换为被引用的值的引用类型。
其中代表的例子是thread
比如thread的方法传递引用的时候,必须外层用ref来进行引用传递,否则就是浅拷贝。
#include <functional>
#include <iostream>
#include<cstring>
#include<string.h>
#include<memory>
#include<atomic>
#include<unordered_map>
#include<mutex>
#include <thread>
#include <string>
void method(int & a){ a += 5;}
using namespace std;
int main(){
int a = 0;
thread th(method,ref(a));
th.join();
cout << a <<endl;
thread th2(method,a); //浅拷贝
th2.join();
cout << a <<endl;
return 0;
}
输出:
5
5
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。