gpt4 book ai didi

c++ - 分配给正在运行的 QFuture

转载 作者:行者123 更新时间:2023-11-30 05:38:38 24 4
gpt4 key购买 nike

我可以将另一个 QFuture 对象分配给已经运行的 QFuture 对象吗?就像下面的例子:

 QFuture<int> future = QtConcurrent::run(function);
future = QtConcurrent::run(anotherFunciton); //assume that future is still running at this point

我意识到这个特定的例子没有多大意义,它只是为了举例。假设第一个函数的结果不再让我感兴趣,进行这样的分配是否安全?还是我必须先取消它?如果是这样,我是否必须等待取消完成?

 QFuture<int> future = QtConcurrent::run(function);
future.cancel();
future.waitForFinished(); //is waiting necessary?
future = QtConcurrent::run(anotherFunciton);

最佳答案

来自 http://doc.qt.io/qt-4.8/qtconcurrentrun.html :

Note that the QFuture returned by QtConcurrent::run() does not support canceling, pausing, or progress reporting. The QFuture returned can only be used to query for the running/finished status and the return value of the function.

这意味着即使您愿意,也无法取消您的 QFuture。还有,就算可以取消,为什么要取消,然后等它完成呢?

来自 http://doc.qt.io/qt-4.8/qthreadpool.html#expiryTimeout-prop :

Threads that are unused for a certain amount of time will expire. The default expiry timeout is 30000 milliseconds (30 seconds). This can be changed using setExpiryTimeout(). Setting a negative expiry timeout disables the expiry mechanism.

由于 QtConcurrent::run() 启动的线程由 QThreadPool 类管理,因此假设您没有指定负到期超时,您应该能够 future = QtConcurrent::run(anotherFunciton); 没有问题;原始线程将过期并退出。然而,这样做的效率值得怀疑。

关于c++ - 分配给正在运行的 QFuture,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32615805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com