Qt线程初步
默默地EEer,原文地址:
http://www.cnblogs.com/hebaichuanyeah/p/5618781.html
在調(diào)用linux環(huán)境下線程API寫Cpp時(shí),發(fā)現(xiàn)異常蛋疼,要么線程函數(shù)不能是類的成員函數(shù),要么必須是類的static成員函數(shù)(意味著調(diào)用的成員變量也必須是static……其實(shí)還是不屬于類)。
Qt提供一套線程機(jī)制,只要繼承QThread基類并重新實(shí)現(xiàn)void run()函數(shù)即可。
新建thread.h繼承Qthread,并在thread.cpp中實(shí)現(xiàn)它。
thread.h
?
#include "QThread"class Thread : public QThread {Q_OBJECT public:Thread();// void setMessage(const Qstring &message);void setRun();void stop();bool getState(); protected:void run(); private:// QString messageStr;volatile bool enable; signals:void OutMessage(QString message); };?
?thread.cpp,在run函數(shù)中循環(huán)1秒觸發(fā)一個(gè)信號(hào)輸出信息。
?
?
#include "thread.h"Thread::Thread() {enable = true; }void Thread::run() {while(true){if(enable){this->OutMessage(tr("I'm run : thread 1"));msleep(1000);}} } void Thread::stop() {enable = false; } void Thread::setRun() {enable = true; } bool Thread::getState() {return enable; }?
?mainwindow.h,定義一些Qt控件
#ifndef MAINWINDOW_H #define MAINWINDOW_H#include <QMainWindow> #include <QLabel> #include <QGridLayout> #include <QPushButton> #include <QTextEdit> #include <QDoubleValidator> #include <QComboBox> #include <QTranslator>#include "thread.h"#define PI 3.14592653589class MainWindow : public QMainWindow {Q_OBJECT public:MainWindow();~MainWindow(); private:QWidget* mainWindow;QGridLayout * mainLayout;QTextEdit * messageEdit;QPushButton * clearButton;QPushButton * runStopButton;Thread * backThread; private slots:void updateMessage(QString message);void clearMessage();void runStopThread();};#endif?mainwindow.cpp
#include "mainwindow.h" #include <QPainter>MainWindow :: MainWindow() {mainWindow = new QWidget;this->setCentralWidget(mainWindow);backThread = new Thread();backThread->start();clearButton = new QPushButton(tr("clear"));clearButton->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);runStopButton = new QPushButton(tr("stop"));messageEdit = new QTextEdit();messageEdit->setReadOnly(true);mainLayout = new QGridLayout;mainLayout->addWidget(messageEdit,0,0,5,5);mainLayout->addWidget(clearButton,1,5,1,1);mainLayout->addWidget(runStopButton,0,5,1,1);mainWindow->setLayout(mainLayout);QObject::connect(clearButton,SIGNAL(clicked()),this,SLOT(clearMessage()));QObject::connect(runStopButton,SIGNAL(clicked()),this,SLOT(runStopThread()));QObject::connect(backThread,SIGNAL(OutMessage(QString)),this,SLOT(updateMessage(QString)));this->setWindowTitle(tr("thread test~"));this->resize(QSize(300,100));// this->setFixedSize(200,100); }MainWindow :: ~MainWindow() {mainWindow->deleteLater();mainLayout->deleteLater();messageEdit->deleteLater();clearButton->deleteLater();runStopButton->deleteLater(); }void MainWindow::updateMessage(QString message) {messageEdit->append(message); } void MainWindow::clearMessage() {messageEdit->clear(); } void MainWindow::runStopThread() {if(backThread->getState()){backThread->stop();runStopButton->setText(tr("run"));}else{backThread->setRun();runStopButton->setText(tr("stop"));} }?運(yùn)行:
后臺(tái)線程不斷打印信息,通過(guò)run/stop按鈕停止/啟動(dòng)。
?
同時(shí),Qt提供一套線程同步機(jī)制
QMutex(互斥鎖),QReadWriteLock(讀寫鎖),QSemaphore(信號(hào)量),QWaitCondition(阻塞等待一個(gè)條件)。
使用都很簡(jiǎn)單,其中QWaitCondition,調(diào)用bool wait(QMutex *mutex, unsigned long time = ULONG_MAX)成員函數(shù)阻塞。 void wakeOne()和void wakeAll()喚醒一處和所有阻塞。(類似于C#里面的ManualResetEvent 類,.WaitOne() ? .Set())
?
轉(zhuǎn)載于:https://www.cnblogs.com/hebaichuanyeah/p/5618781.html
總結(jié)
- 上一篇: 电脑系统坏了开不开机怎么办 电脑无法启动
- 下一篇: 352. Data Stream as