qt创建线程和退出线程
生活随笔
收集整理的這篇文章主要介紹了
qt创建线程和退出线程
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
QThread *p = new QThread;
connect(p, SIGNAL(started()), this, SLOT(slot_factoryAuthDealwith()));
connect(p, SIGNAL(finished()), this, SLOT(slot_DeleteQThreadP()));
p->start();
//刪除線程指針QThread *ptr = static_cast<QThread *>(sender());if (ptr == NULL)return ;ptr->deleteLater();
總結(jié)
以上是生活随笔為你收集整理的qt创建线程和退出线程的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: terminate和quit导致串口资源
- 下一篇: opencv视频模糊处理