30 Mayıs 2017 Salı

thread scoped_thread Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <boost/thread.hpp>
#include <boost/thread/scoped_thread.hpp>
Constructor
Şöyle yaparız.
void MyThread()
{
  ...
}

int main(int argc, char* argv[])
{

  boost::scoped_thread<> st {boost::thread(MyThread)};
  ...
}

Hiç yorum yok:

Yorum Gönder