我有运行一些任务的QThreadPool。 我还需要在其他任务中创建新任务。 为此,我认为应执行以下操作:
class Task : public QRunnable
{
QThreadPool *pool;
public:
Task (QThreadPool *p) : pool(p){}
void run()
{
static std::atomic<int> counter = ATOMIC_FLAG_INIT;
qDebug() << QThread::currentThreadId();
int c;
if ((c = counter.load(std::memory_order_acquire)) < 10) {
pool->start(new Task(pool));
counter.store(c + 1, std::memory_order_release);
}
}
};
int main(int argc, char *argv[])
{
//...
QThreadPool threadPool;
threadPool.start(new Task(&threadPool));
//...
}
但是我不确定这是正确的方法。