如何终止std :: thread?

时间:2016-07-23 05:19:01

标签: c++ multithreading c++11 cocos2d-x stdthread

我目前正在开发一个程序,需要从套接字服务器下载一些图像,下载工作将执行很长时间。所以,我创建了一个新的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
}

1 个答案:

答案 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;
};