2

看看这两个代码。

下面的代码工作正常。

void someFunction () {

    // Some unimportant stuff
}

MainM::MainM(QObject *parent) :
    QObject(parent)
{

    std::thread oUpdate (someFunction);

}

此代码引发错误:

void MainM::someFunction () {      //as a class member


}


MainM::MainM(QObject *parent) :
    QObject(parent)
{

    std::thread oUpdate (someFunction);

}

错误:

error: no matching function for call to 'std::thread::thread(<unresolved overloaded function type>)'
     std::thread oUpdate (someFunction);
                                     ^
4

1 回答 1

8

您不能仅通过应用name来创建指向成员函数的指针。您需要完全合格的成员:。&&MainM::someFunction

并且还通过传递将它绑定到一个实例this,例如

#include <thread>

struct MainM
{
    void someFunction() {
    }

    void main() 
    {
        std::thread th(&MainM::someFunction, this);
    }
};

int main()
{
    MainM m;
    m.main();
}
于 2013-09-18T19:36:16.720 回答