我正在尝试在VS2013中编译以下代码,以便用C ++学习未来和承诺。但它会引发错误,
cannot convert argument 1 from 'std::promise<std::string>' to 'std::promise<std::string> &&
”。
为什么会出现此错误?
#include<iostream>
#include<thread>
#include<future>
#include<string>
using namespace std;
int func(promise<string> && prms)
{
int k;
for (int i = 0; i < 1000000;i++)
for (int j = 0; j < 1000000; j++)
{
k += i + j;
}
prms.set_value("Thread set");
}
int main()
{
promise<string>prms;
future<string> ftr = prms.get_future();
thread t(func, std::move(prms));
cout << "Waiting in main\n";
string str = ftr.get();
cout << str << endl;
return 0;
}