如何使用QtConcurrent :: run与重载函数

时间:2016-11-23 10:54:24

标签: c++ multithreading qt qtconcurrent

我目前正在尝试并行化我的代码,因此我使用QtConcurrent::run并且问题是,运行并不知道要选择哪个函数。

有没有办法使用带有重载功能的run或者我找到某种解决方法?

1 个答案:

答案 0 :(得分:3)

您只需static_cast指针即可确保过程中没有歧义

void hello(QString name)
{
    qDebug() << "Hello" << name << "from" << QThread::currentThread();
}

void hello(int age)
{
    qDebug() << "Hello" << age << "from" << QThread::currentThread();
}

int main(int argc, char **argv)
{
    QApplication app(argc, argv);
    QFuture<void> f1 = run(static_cast<void(*)(QString)>(hello), QString("Alice"));
    QFuture<void> f2 = run(static_cast<void(*)(int)>(hello), 42);
    f1.waitForFinished();
    f2.waitForFinished();
}

或者获得指向右边的指针。