std :: thread <unresolved overloaded =“”function =“”type =“”> error </unresolved>

时间:2012-12-15 01:27:50

标签: c++ multithreading c++11 std stdthread

我正在尝试从我的类中生成一个线程,并且线程在我的类中执行一个特定的方法。代码如下所示:

class ThreadClass{
    int myThread(int arg){
     // do something
    }

    void createThread(){
        thread t = thread(myThread,10);
    }

} ;

编译时此代码会抛出错误

std::thread::thread(_Callable&&, _Args&& ...) [with _Callable = int (ThreadClass::*)(int), _Args = {int}]
no known conversion for argument 1 from ‘<unresolved overloaded function type>’ to ‘int (ThreadClass::*&&)(int)’

我不确定这里的实际错误是什么。有人可以帮我这个吗?

感谢。

1 个答案:

答案 0 :(得分:27)

问题是没有对象就无法调用成员函数。提供指向this的指针,以便使用当前对象:

thread t(&ThreadClass::myThread, this, 10);

您可以使用任何ThreadClass对象的实例,但在您的情况下,似乎this是正确的。

注意:请记住,您需要对创建的线程的引用,以便稍后可以执行join()