我正在尝试将向量发送到另一个线程函数的参数:
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_thread1
和Control_thread2
使用相同的vector
!
如果我使用thread **threads;...
代替vector
它工作正常,但我不想使用指针。
我该怎么办?!
答案 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);