我正在使用simple multithreaded library来尝试理解基础知识。
lib有一个排队函数,如下所示:
fetch_array
并存储这样的功能:
auto enqueue(F&& f, Args&&... args)
-> std::future<typename std::result_of<F(Args...)>::type>;
有一个关于如何传递Lambdas的例子,但我想传递成员变量。所以我创建了一个小对象:
std::queue< std::function<void()> > tasks;
创建无参数函数有效。但即使站点上的示例lambda也使用传递的参数:
Threadpool tp(4);
class myClass{
vector<std::future<int>> res;
public:
int compute(int i){
return 2 * i;
};
void update(){
for(int i = 0; i < 10; i++){
res.emplace_back(
// C2664 - 'std::future<int>::future(const std::future<int> &)':
// cannot convert argument 1 from 'std::future<_Rx>' to 'std::future<int> &&'
tp.enqueue(std::bind(&myClass::compute, this), i)
);
};
}
};
我没有到这里来的?
另外一个侧面问题:在标准功能方面,使用的优势是什么:
tp.enqueue([](int answer) { return answer; }, 42);
而不是:
auto fn(...) -> return type