c – thead joinable-join是否有竞争条件?你怎么绕过它?

前端之家收集整理的这篇文章主要介绍了c – thead joinable-join是否有竞争条件?你怎么绕过它?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可以说我有以下课程
class A
 {
 public:
    A()
    {
       my_thread=std::thread(std::bind(&A::foo,this));
    }
    ~A()
    {
       if (my_thread.joinable())
       {
          my_thread.join();
       }
    }
 private:
    std::thread my_thread;
    int foo();
 };

基本上,如果我的线程在joinable和join调用之间完成,那么my_thread.join将永远等待?你怎么解决这个问题?

解决方法

Basically,if my thread completes between the joinable and join calls,then my_thread.join will wait forever?

不可以.线程在完成后仍可加入;它只有在加入或分离后才会变得无法加入.

在销毁控制线程对象之前,必须连接或分离所有线程.

原文链接:https://www.f2er.com/c/115945.html

猜你在找的C&C++相关文章