c++ - 通过引用将对象传递给C++ 11中的std::thread

标签 c++ multithreading c++11 pass-by-reference stdthread

为什么创建std::thread时不能通过引用传递对象?

例如,以下代码片段给出了编译错误:

#include <iostream>
#include <thread>

using namespace std;

static void SimpleThread(int& a)  // compile error
//static void SimpleThread(int a)     // OK
{
    cout << __PRETTY_FUNCTION__ << ":" << a << endl;
}

int main()
{
    int a = 6;

    auto thread1 = std::thread(SimpleThread, a);

    thread1.join();
    return 0;
}

错误:
In file included from /usr/include/c++/4.8/thread:39:0,
                 from ./std_thread_refs.cpp:5:
/usr/include/c++/4.8/functional: In instantiation of ‘struct std::_Bind_simple<void (*(int))(int&)>’:
/usr/include/c++/4.8/thread:137:47:   required from ‘std::thread::thread(_Callable&&, _Args&& ...) [with _Callable = void (&)(int&); _Args = {int&}]’
./std_thread_refs.cpp:19:47:   required from here
/usr/include/c++/4.8/functional:1697:61: error: no type named ‘type’ in ‘class std::result_of<void (*(int))(int&)>’
       typedef typename result_of<_Callable(_Args...)>::type result_type;
                                                             ^
/usr/include/c++/4.8/functional:1727:9: error: no type named ‘type’ in ‘class std::result_of<void (*(int))(int&)>’
         _M_invoke(_Index_tuple<_Indices...>)
         ^

我已更改为传递指针,但是周围有更好的解决方法吗?

最佳答案

reference_wrapper by using std::ref 显式初始化线程:

auto thread1 = std::thread(SimpleThread, std::ref(a));

(或std::cref而不是std::ref,视情况而定)。根据cppreference on std:thread 的注释:

The arguments to the thread function are moved or copied by value. If a reference argument needs to be passed to the thread function, it has to be wrapped (e.g. with std::ref or std::cref).

关于c++ - 通过引用将对象传递给C++ 11中的std::thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59772083/

相关文章:

.net - 是否应该在新线程中引发事件以不阻塞当前工作?

c++ - 来自右值的非常量类型引用

C++11 regex::icase 不一致行为

c++ - 在 C++ ctor-initializer 中可选地包含成员的干净方法

c++ - 在二叉搜索树中查找元素仅在 true 时有效

c++ - 如何访问重复捕获组的所有匹配项,而不仅仅是最后一个?

c# - 存储具有相同唯一标识符 ("username"的两个域模型(用户)时克服不一致的最佳方法)

c++ - Fortran ifstream 等价物

java - 如何将值从线程返回到另一个类

c++ - 如何为 std::fill() 使用 C++0x lambdas 局部变量?