Start thread with member function Start thread with member function multithreading multithreading

Start thread with member function


#include <thread>#include <iostream>class bar {public:  void foo() {    std::cout << "hello from member function" << std::endl;  }};int main(){  std::thread t(&bar::foo, bar());  t.join();}

EDIT:Accounting your edit, you have to do it like this:

  std::thread spawn() {    return std::thread(&blub::test, this);  }

UPDATE: I want to explain some more points, some of them have also been discussed in the comments.

The syntax described above is defined in terms of the INVOKE definition (ยง20.8.2.1):

Define INVOKE (f, t1, t2, ..., tN) as follows:

  • (t1.*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is an object of type T or a reference to an object of type T or a reference to an object of a type derived from T;
  • ((*t1).*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is not one of the types described in the previous item;
  • t1.*f when N == 1 and f is a pointer to member data of a class T and t 1 is an object of type T or a
    reference to an object of type T or a reference to an object of a
    type derived from T;
  • (*t1).*f when N == 1 and f is a pointer to member data of a class T and t 1 is not one of the types described in the previous item;
  • f(t1, t2, ..., tN) in all other cases.

Another general fact which I want to point out is that by default the thread constructor will copy all arguments passed to it. The reason for this is that the arguments may need to outlive the calling thread, copying the arguments guarantees that. Instead, if you want to really pass a reference, you can use a std::reference_wrapper created by std::ref.

std::thread (foo, std::ref(arg1));

By doing this, you are promising that you will take care of guaranteeing that the arguments will still exist when the thread operates on them.


Note that all the things mentioned above can also be applied to std::async and std::bind.


Since you are using C++11, lambda-expression is a nice&clean solution.

class blub {    void test() {}  public:    std::thread spawn() {      return std::thread( [this] { this->test(); } );    }};

since this-> can be omitted, it could be shorten to:

std::thread( [this] { test(); } )

or just (deprecated)

std::thread( [=] { test(); } )


Here is a complete example

#include <thread>#include <iostream>class Wrapper {   public:      void member1() {          std::cout << "i am member1" << std::endl;      }      void member2(const char *arg1, unsigned arg2) {          std::cout << "i am member2 and my first arg is (" << arg1 << ") and second arg is (" << arg2 << ")" << std::endl;      }      std::thread member1Thread() {          return std::thread([=] { member1(); });      }      std::thread member2Thread(const char *arg1, unsigned arg2) {          return std::thread([=] { member2(arg1, arg2); });      }};int main(int argc, char **argv) {   Wrapper *w = new Wrapper();   std::thread tw1 = w->member1Thread();   std::thread tw2 = w->member2Thread("hello", 100);   tw1.join();   tw2.join();   return 0;}

Compiling with g++ produces the following result

g++ -Wall -std=c++11 hello.cc -o hello -pthreadi am member1i am member2 and my first arg is (hello) and second arg is (100)