我试图将C ++ 11线程声明为类成员,以便我可以"分配"开始执行的函数,比如在构造函数中,我可以在析构函数中加入线程。
我该怎么做?我已经将线程声明为成员,但我正在努力为线程分配函数来调用?
伪:
class X{
public:
X(){
t1(&X::func, this);
t2(&X::func, this);
}
~X(){
t1.join();
t2.join();
}
void func(){
//Does stuff
}
std::thread t1;
std::thread t2;
};
答案 0 :(得分:3)
以通常的方式在构造函数的初始化列表中初始化它们:
X() : t1(&X::func, this), t2(&X::func, this) {}
或者,为了确保首先初始化所有成员,保留默认初始化,然后在构造函数体中重新分配它们:
X(){
t1 = std::thread(&X::func, this);
t2 = std::thread(&X::func, this);
}
答案 1 :(得分:0)
&X::func
不是可调用对象,而是成员函数偏移量。您必须使用绑定成员函数指针来实现您所追求的结果。