c_cpp RAII确保C ++ 11线程被加入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp RAII确保C ++ 11线程被加入相关的知识,希望对你有一定的参考价值。

class scoped_thread
{
  std::thread t;
public:
  explicit scoped_thread(std::thread t_) : t(std::move(t_)) {
    if (!t.joinable()) {
      throw std::logic_error(“No thread”);
    }
  }
  ~scoped_thread() {
    t.join();
  }
  scoped_thread(scoped_thread const &) = delete;
  scoped_thread &operator=(scoped_thread const &) = delete;
};

以上是关于c_cpp RAII确保C ++ 11线程被加入的主要内容,如果未能解决你的问题,请参考以下文章

RAII 线程安全获取器

C++11的资源管理:泛化的RAII

确保当前线程持有 C++11 互斥锁

多线程的互斥锁应用RAII机制

多线程的互斥锁应用RAII机制

C++RAII(Resource Acquisition Is Initialization 资源获取即初始化)是什么?(raii)