继续这个问题:
can-a-temperary-lambda-by-passed-by-reference?
我有一个固定的代码片段:
// global variable std::thread worker_thread; // Template function template <typename Functor> void start_work(const Functor &worker_fn) // lambda passed by const ref { worker_thread = std::thread([&](){ worker_fn(); }); }
这被称为这样:
void do_work(int value) { printf("Hello from worker\r\n"); } int main() { // This lambda is a temporary variable... start_work([](int value){ do_work(value) }); }
这似乎有效,但我担心将临时lambda传递给线程构造函数,因为线程将运行,但函数start_work()将返回,temp-lambda将超出范围.
但是我正在查看定义的std :: thread构造函数:
thread() noexcept; (1) (since C++11)
thread( thread&& other ) noexcept; (2) (since C++11)
template< class Function,class… Args >
explicit thread( Function&& f,Args&&… args ); (3) (since C++11)thread(const thread&) = delete; (4) (since C++11)
template< class Function,class... Args > explicit thread( Function&& f,Args&&... args );
我很难理解这里写的是什么,但看起来它会试图移动lambda&&我认为对于临时变量是好的.
那么我在我的代码片段中做了什么危险(即ref超出范围)或正确(即临时移动,一切都很好)?还是两个?
另一种方法就是传递我的价值(制作副本),在这种情况下无论如何都不是那么糟糕.