我目前正在开发一个程序,需要从套接字服务器下载一些图像,下载工作将执行很长时间。所以,我创建了一个新的std::thread
来做到这一点。
一旦下载,std::thread
将调用当前Class的成员函数,但此类可能已被释放。所以,我有一个例外。
如何解决这个问题?
void xxx::fun1()
{
...
}
void xxx::downloadImg()
{
...a long time
if(downloadComplete)
{
this->fun1();
}
}
void xxx::mainProcees()
{
std::thread* th = new thread(mem_fn(&xxx::downloadImg),this);
th->detach();
//if I use th->join(),the UI will be obstructed
}
答案 0 :(得分:4)
不要分开线程。相反,您可以拥有一个数据成员,该成员包含指向thread
的指针,以及join
析构函数中的线程。
class YourClass {
public:
~YourClass() {
if (_thread != nullptr) {
_thread->join();
delete _thread;
}
}
void mainProcees() {
_thread = new thread(&YourClass::downloadImg,this);
}
private:
thread *_thread = nullptr;
};
<强>更新强>
就像@milleniumbug指出的那样,你不需要动态分配thread
对象,因为它是可移动的。所以另一个解决方案如下。
class YourClass {
public:
~YourClass() {
if (_thread.joinable())
_thread.join();
}
void mainProcess() {
_thread = std::thread(&YourClass::downloadImg, this);
}
private:
std::thread _thread;
};