在另一个线程中使用线程向量:尝试引用已删除函数时出错

时间:2014-06-11 16:40:17

标签: c++ multithreading c++11 stl stdthread

我正在尝试将向量发送到另一个线程函数的参数:

void foo(){}
const int n = 24;
void Thread_Joiner(std::vector<thread>& t,int threadNumber)
{
    //some code
}
int main()
{
    std::vector<thread> threads(n, thread(foo));
    thread Control_thread1(Thread_Joiner, threads, 0);//error
    thread Control_thread2(Thread_Joiner, threads, 1);//error
    //...
}

上面的代码给出了这个错误:

: attempting to reference a deleted function

我检查了std::thread的头文件。似乎删除了复制构造函数:thread(const thread&) = delete;

std::thread有一个移动构造函数但我不认为在这种情况下使用移动是有帮助的,因为Control_thread1Control_thread2使用相同的vector

如果我使用thread **threads;...代替vector它工作正常,但我不想使用指针

我该怎么办?!

1 个答案:

答案 0 :(得分:3)

std::thread复制用于绑定的参数。使用std::ref将其作为参考包含:

std::thread Control_thread1(Thread_Joiner, std::ref(threads), 0);
std::thread Control_thread2(Thread_Joiner, std::ref(threads), 1);