QThread :: wait()和QThread :: finished()

时间:2009-08-29 11:34:00

标签: c++ multithreading qt qthread

在调用与QThread :: finished()信号关联的所有插槽后,QThread :: wait()是否返回(即解除执行)?

提前致谢。

1 个答案:

答案 0 :(得分:5)

不,它可能会在与信号finished()相关联的广告位执行之前,期间或之后返回。

这取决于信号槽连接的类型,请阅读queued connections and direct connections