您好,登錄后才能下訂單哦!
Qt多線程程序設計中,可使用信號和槽進行線程通信。下面是一個簡單的示例。
該程序實現了線程中自定義一個信號和槽,定時1秒發送信號,槽響應后打印一條信息。
[cpp] view plain copy
#include <QtCore/QCoreApplication>
#include <QThread>
#include <stdio.h>
class MyThread:public QThread
{
Q_OBJECT
public:
MyThread();
void stop();
private:
bool isRunning;
void run();
public slots:
void showMsg();
signals:
void msg();
};
MyThread::MyThread()
{
isRunning = true;
connect(this,SIGNAL(msg()),this,SLOT(showMsg()),Qt::DirectConnection);
}
void MyThread::showMsg()
{
printf("Hello!\n");
}
void MyThread::run()
{
while(isRunning)
{
sleep(1);
emit msg();
}
printf("Exit!\n");
}
void MyThread::stop()
{
isRunning = false;
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
MyThread mThread;
mThread.start();
while(1)
{
if(getchar()=='B')
{
mThread.stop();
mThread.wait();
break;
}
}
return a.exec();
}
#include "main.moc"
在Qt Creator中編譯時,需先使用【qmake】進行編譯,以生成moc文件。然后再使用構建項目進行編譯。
PS:Qt元對象系統
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。