문제

I have a function foo(myclass* ob) and I am trying to create a consumer thread using consumer_thread(boost::bind(&foo)(&ob))

The code does not compile which I believe is due to my inappropriate way of passing the function argument to the function pointer.

class myclass{
// stuff
}

void foo(myclass* ob){
// stuff
}

int main(){
myclass* ob = new myclass();
boost::thread consumer_thread()boost::bind(&foo)(&ob));
// stuff
}

What am I doing wrong? Can anyone here elaborate on boost::bind and how to pass function pointers with function arguments?

Thanks in advance!

도움이 되었습니까?

해결책

Your code sample has some errors. This is a fixed version, where the return value of the call to bind is used as the sole parameter in the boost::thread constructor:

boost::thread consumer_thread(boost::bind(foo, ob));

But you can skip the call to boost::bind entirely, passing the function and its parameters to the constructor:

boost::thread consumer_thread(foo, ob);

다른 팁

That should be bind(foo, ob).

However, I'm fairly sure that boost::thread has the same interface as std::thread, in which case you don't need bind at all:

boost::thread consumer_thread(foo, ob);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top