QT 多线程(QThread)里调用线程池(QThreadPool )与主界面进行通讯

27 篇文章 0 订阅

QT 多线程(QThread)里调用线程池(QThreadPool )与主界面进行通讯

在最近的一个项目中,遇到了一个问题,就是主界面调用一个线程,然后再线程中开启一个线程池进行数据生成,线程池调用的线程对象必须继承自QRunable类,这个类有个缺点,就是因为它无法继承QObject,所以不能向外面发送信号,但是我们需要在主界面显示它输出的信息。怎么办呢?

  • 编写一个QRunable子类
  • 编写一个QThread子类
  • 调用QThread子类

编写一个QRunable子类

编写一个QRunable子类MyRunable

MyRunable.h代码,如下:

#ifndef MYRUNNABLE_H
#define MYRUNNABLE_H

#include <QRunnable>
#include <QMetaObject>

class MyRunnable : public QRunnable
{
public:
    MyRunnable(QObject *parent = 0);
    ~MyRunnable();

    void run();

    void setID(const int &id);
    //向外传送消息
    void requestMsg(const QString &msg);
private:
    //父对象
    QObject *mParent;

    int runnableID;
};

#endif // MYRUNNABLE_H

MyRunable.cpp代码,如下:

#include "myrunnable.h"
#include <QDebug>
#include <QThread>
MyRunnable::MyRunnable(QObject *parent)
    : QRunnable()
{
    mParent = parent;
}

MyRunnable::~MyRunnable()
{
    runnableID = 0;
}

void MyRunnable::setID(const int &id)
{
    runnableID = id;
}

void MyRunnable::requestMsg(const QString &msg)
{
    QMetaObject::invokeMethod(mParent, "requestMsg", Qt::QueuedConnection, Q_ARG(QString, msg));
}

void MyRunnable::run()
{
    for(int i = 0;i < 10;i++)
    {
        requestMsg(QString("this is a MyRunnable %1").arg(runnableID));
        QThread::sleep(1);
    }
}

编写一个QThread子类

编写一个QThread子类MyThread

MyThread.h代码,如下:

#ifndef MYTHREAD_H
#define MYTHREAD_H

#include <QThread>

class MyThread : public QThread
{
    Q_OBJECT
public:
    explicit MyThread(QObject *parent = 0);

protected:
    void run();

signals:
    void requestMsg(const QString &msg);

public slots:

};

#endif // MYTHREAD_H

MyThread.cpp代码,如下:

#include "mythread.h"
#include <QThreadPool>
#include "myrunnable.h"
#include <QDebug>
MyThread::MyThread(QObject *parent) :
    QThread(parent)
{
}

void MyThread::run()
{
    qDebug() << "MyThread";

    QThreadPool myPool;
    myPool.setMaxThreadCount(4);
    for(int i = 0;i < 4;i++)
    {
        MyRunnable *subThread = new MyRunnable(this);
        subThread->setID(i);
        myPool.start(subThread);
    }

    myPool.waitForDone();
}

调用QThread子类

在MainWindow中调用MyThread并关联信号槽

MainWindow .h代码,如下:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "mythread.h"

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
private slots:
    void showMsg(const QString &msg);
private:
    Ui::MainWindow *ui;

    MyThread myThread;
};

#endif // MAINWINDOW_H

MainWindow .cpp代码,如下:

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QDateTime>

#include <QThreadPool>
#include <myrunnable.h>


MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    connect(&myThread,SIGNAL(requestMsg(const QString&)),this,SLOT(showMsg(const QString&)));
    myThread.start();
}

void MainWindow::showMsg(const QString &msg)
{
    qDebug()<< msg;
}

运行结果

MyThread
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"
"this is a MyRunnable 0"
"this is a MyRunnable 1"
"this is a MyRunnable 2"
"this is a MyRunnable 3"

欢迎大家指正…

  • 1
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值