c – 使主线程等到所有其他Qthread完成

前端之家收集整理的这篇文章主要介绍了c – 使主线程等到所有其他Qthread完成前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法强制主线程等到从它创建的所有线程完成他们的工作,然后才能完成程序.我的意思是:
int main(){
    QthreadClass a; // in cons' a thread is created and running
    QthreadClass b; // same as before

    *** wish to wait till both created thread finished their jobs ***

    return 0;

}

解决方法

那么,怎么样:
a.wait();
b.wait();

或者,您宁愿启动一个事件循环(通常用于Qt应用程序),当两个线程结束时(QThread发出finished()和terminate()信号),您将退出.

原文链接:https://www.f2er.com/c/111677.html

猜你在找的C&C++相关文章