码迷,mamicode.com
首页 > 其他好文 > 详细

QThread: Destroyed while thread is still running解决办法

时间:2015-01-09 19:15:56      阅读:5271      评论:0      收藏:0      [点我收藏+]

标签:

这是由于线程未执行完毕,但提前关闭引起的,常规结束线程的步骤为:

 

(1)disconect(.........) ;  //关闭所有与该进程对象关联的信号和槽
(2)thread->quit();
(3)thread->wait();
(4)thread->deleteLater();

 

实际测试,只用(2)(3)也行。

QThread: Destroyed while thread is still running解决办法

标签:

原文地址:http://www.cnblogs.com/spyhooky/p/4213946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!