Qt中线程的使用

目录

1 .QThread重要信号和函数

1.1 常用共用成员函数

1.2信号和槽函数

1.3静态函数

1.4 任务处理函数

2.关于QThread的依附问题:

3.关于connect连接

4.QThread的使用

5.线程池QThreadPool

5.1. 线程池的原理

5.2.QRunable类

5.3. QThreadPool

6 QtConcurrent

7.QTimer

多线程中使用

8.QElapsedTimer


1 .QThread重要信号和函数

By default, run() starts the event loop by calling exec() and runs a Qt event loop inside the thread.

1.1 常用共用成员函数

1.2信号和槽函数

1.3静态函数

1.4 任务处理函数

2.关于QThread的依附问题:

QThread是用来管理现成的,他所依附的线程和他所管理的线程不是一个东西。

QThread所依附的线程指的是创建他的线程,即执行QThread t(0)的线程,即主线程。

QThread所管理的线程是run启动的线程;

因此一般情况下,QThread或继承的MyThread中的普通函数或槽函数(非run)都是依赖对象t从而在主线程中执行;而run则不一样;

MoveToThread

3.关于connect连接

自动连接(AutoConnection),默认的连接方式

如果信号与槽,也就是发送者与接受者在同一线程,等同于直接连接;

如果发送者与接受者处在不同线程,等同于队列连接。

直接连接(DirectConnection)

当信号发射时,槽函数立即直接调用。无论槽函数所属对象在哪个线程,槽函数总在发送者所在线程执行。

队列连接(QueuedConnection)

当控制权回到接受者所在线程的事件循环时,槽函数被调用。槽函数在接受者所在线程执行。

阻塞连接(QBlockingQueuedConnection)

Same as Qt::QueuedConnection, except that the signalling thread blocks until the slot returns.

4.QThread的使用

用法1:将工作对象和线程对象分离,通过信号和槽函数进行通信触发。

class AsyncObject : public QObject
{Q_OBJECT
public:AsyncObject() = default;~AsyncObject() = default;public slots:void slHandleNotify(int, const QString&);
};void UploadManager::StartServer()
{if (!m_bStarted){m_asyncObject = new AsyncObject();m_pTimerThread = new QThread();m_asyncObject->moveToThread(m_pTimerThread);//所有权交付线程connect(this, &UploadManager::sgNotifyReceived, m_asyncObject, &AsyncObject::slHandleNotify);//默认 AutoConnection this与m_asyncObject不同线程QueuedConnection,//在子线程中运行槽函数 且主线程不等待  Qt::BlockingQueuedConnection则同步等待m_pTimerThread->start();m_bStarted = true;}
}

用法2:继承QThread,重写run函数。

        这种在程序中添加子线程的方式是非常简单的,但是也有弊端,假设要在一个子线程中处理多个任务所有的处理逻辑都需要写到run()函数中,这样该函数中的处理逻辑就会变得非常混乱,不太容易维护。

         

class SearchRecordThread:QThread
{QOBJECTpublic:SearchRecordThread(Qbject*parent = nullptr);protected:void run() override;
}SearchRecordThread::SearchRecordThread(Qbject*parent):QThread(parent)
{}void SearchRecordThread::run()
{//子线程中耗时的数据库搜索业务
}void testThread::test()
{SearchRecordThread* searchRecordThread= new SearchRecordThread;searchRecordThread->start();
}

5.线程池QThreadPool

5.1. 线程池的原理

        如果并发的线程数量很多,并且每个线程都是执行一个时间很短的任务就结束了,如果频繁创建线程和销毁线程需要时间,大大降低系统的效率

        线程池是一种多线程处理形式,处理过程中将任务添加到队列,然后在创建线程后自动启动这些任务。线程池线程都是后台线程。每个线程都使用默认的堆栈大小,以默认的优先级运行,并处于多线程单元中。如果某个线程在托管代码中空闲(如正在等待某个事件), 则线程池将插入另一个辅助线程来使所有处理器保持繁忙。如果所有线程池线程都始终保持繁忙,但队列中包含挂起的工作,则线程池将在一段时间后创建另一个辅助线程但线程的数目永远不会超过最大值。超过最大值的线程可以排队,但他们要等到其他线程完成后才启动。

5.2.QRunable类

The QRunnable class is the base class for all runnable objects. 即QThread也是继承QRunable,因此用法一致重写run函数即可。

在 Qt 中使用线程池需要先创建任务,添加到线程池中的每一个任务都需要是一个 QRunnable 类型,因此在程序中需要创建子类继承 QRunnable 这个类,然后重写 run() 方法,在这个函数中编写要在线程池中执行的任务,并将这个子类对象传递给线程池,这样任务就可以被线程池中的某个工作的线程处理掉了

//继承QRunnable 任务重写在run()里面
class QueryRemoteControlRunnable : public QRunnable
{
public:QueryRemoteControlRunnable() = default;QueryRemoteParam qrp;void run();
};//主线程中将该对象扔到线程池,会分配空闲的线程
void RequstRunables::queryRemoteControl(const QueryRemoteParam& qrp)
{QueryRemoteControlRunnable* pRun = new(std::nothrow)QueryRemoteControlRunnable();if (!pRun){cLogger("Runnable")->error() << __FUNCTION__ << "从堆中创建QueryRemoteControlRunnable失败";return;}pRun->qrp = qrp;QThreadPool::globalInstance()->start(pRun);
}

5.3. QThreadPool

Qt 中的 QThreadPool 类管理了一组 QThreads, 里边还维护了一个任务队列。QThreadPool 管理和回收各个 QThread 对象,以帮助减少使用线程的程序中的线程创建成本。每个Qt应用程序都有一个全局 QThreadPool 对象,可以通过调用 globalInstance() 来访问它。也可以单独创建一个 QThreadPool 对象使用。

一般情况下,我们不需要在 Qt 程序中创建线程池对象,直接使用 Qt 为每个应用程序提供的线程池全局对象即可。得到线程池对象之后,调用 start() 方法就可以将一个任务添加到线程池中,这个任务就可以被线程池内部的线程池处理掉了,使用线程池比自己创建线程的这种多种多线程方式更加简单和易于维护 .

void MyThreadPool::InitMyThreadPool()
{if (!m_MyThreadPool){QMutexLocker Lock(&m_MyPoolMutex);if (!m_MyThreadPool){m_MyThreadPool = new QThreadPool;//创建线程池if (m_MyThreadPool){m_MyThreadPool->setMaxThreadCount(4);}}}
}QThreadPool *MyThreadPool::GetMyThreadPool()
{if (!m_MyThreadPool){InitMyThreadPool();}return m_MyThreadPool;
}void MyThreadPool::DestoryThreadPool()
{if (m_MyThreadPool){m_MyThreadPool->waitForDone();}
}

6 QtConcurrent

QtConcurrent命名空间中定义了高级线程API,避免使用低级原生线程,更加简化。

使用:包含Concurrent模块

QFuture<T> QtConcurrent::run(Function function, ...)
Equivalent toQtConcurrent::run(QThreadPool::globalInstance(), function, ...);/*
Runs function in a separate thread. The thread is taken from the global QThreadPool. Note that function may not run immediately; function will only be run once a thread becomes available.
T is the same type as the return value of function. Non-void return values can be accessed via the QFuture::result() function.
Note that the QFuture returned by QtConcurrent::run() does not support canceling, pausing, or progress reporting. The QFuture returned can only be used to query for the running/finished status and the return value of the function.
See also Concurrent Run.
*/QFuture<T> QtConcurrent::run(QThreadPool *pool, Function function, ...)
/*  
Runs function in a separate thread. The thread is taken from the QThreadPool pool. Note that function may not run immediately; function will only be run once a thread becomes available.
T is the same type as the return value of function. Non-void return values can be accessed via the QFuture::result() function.
Note that the QFuture returned by QtConcurrent::run() does not support canceling, pausing, or progress reporting. The QFuture returned can only be used to query for the running/finished status and the return value of the function.
*/QtConcurrent::run(m_notifyThreadPool, [=]() {/*working*/
});QPixmap QPixmapLoader::loadRemotePixmap(const QString &strUniqueId, int picType,const QString& strClientHash,const QString& strPicPath)
{auto &&pixmap = loadBufferedRemotePixmap(strUniqueId, picType);if (pixmap.isNull() && !strUniqueId.isEmpty()) {QtConcurrent::run(&m_threadPool, std::bind(&QPixmapLoader::loadPixmapFromRemote, this, strUniqueId, picType, strClientHash, strPicPath));}return pixmap;
}#include<QThread>
#include<QtConcurrent>
void Test{QtConcurrent::run([]{std::cout  << QThread::currentThread() << std::endl;});QtConcurrent::run([]{std::cout << QThread::currentThread() << std::endl;});QThread::msleep(100);QByteArray str = "Hello,World,Welcome,to,WestWorld";QFuture<QList<QByteArray>>future =  QtConcurrent::run(str, &QByteArray::split, ',');QList<QByteArray> result = future.result();for (auto iter : result){qDebug() << iter;}
}

7.QTimer

多线程中使用

        In multithreaded applications, you can use QTimer in any thread that has an event loop. To start an event loop from a non-GUI thread, use QThread::exec(). Qt uses the timer's thread affinity to determine which thread will emit the timeout() signal. Because of this, you must start and stop the timer in its thread; it is not possible to start a timer from another thread.

//.h
class MyTimerThread : public QThread
{Q_OBJECTpublic:MyTimerThread(QObject *parent=nullptr);~MyTimerThread();void addTimer(QTimer* timer);protected:virtual void run();
private:QVector<QTimer*> m_timerList;
};//cpp
class MyTimerThread : public QThread
{Q_OBJECTpublic:MyTimerThread(QObject *parent=nullptr);~MyTimerThread();void addTimer(QTimer* timer);protected:virtual void run();
private:QVector<QTimer*> m_timerList;
};
MyTimerThread::MyTimerThread(QObject *parent)
{
}MyTimerThread::~MyTimerThread()
{quit();wait();
}void MyTimerThread::addTimer(QTimer* timer)
{if (nullptr == timer){return;}//timer所属权都交给子线程timer->moveToThread(this);m_timerList.append(timer);
}void MyTimerThread::run()
{for (auto pTimer : m_timerList) {pTimer->start();}exec();//子线程里面使用QTimer需要事件循环for (auto pTimer : m_timerList) {pTimer->stop();delete pTimer;}
}//使用测试
int Server::startServer()
{m_pTimerThread = new MyTimerThread();m_timerHeartBeat = new QTimer();m_timerHeartBeat->setInterval(3000);m_pTimerThread->addTimer(m_timerHeartBeat);//子线程中启动 Qt::DirectConnection 子线程中心跳connect(m_timerHeartBeat, &QTimer::timeout, this, &Server::HeartBeat, Qt::DirectConnection);//...
}
class DevManager : public QObject
{Q_OBJECTpublic:bool startServer();//...public slots:void uploadParkSlotToDev();
private:DevManager(QObject *parent);QTimer m_timerParksLot;QThread *m_ParksLotThread = nullptr;
};bool DevManager::startServer()
{if (!m_bStarted){int IntervalTime = 3000;m_timerParksLot.setInterval(IntervalTime);m_ParksLotThread = new QThread(this);m_timerParksLot.moveToThread(m_ParksLotThread);//m_timerParksLot所有权交给m_ParksLotThreadconnect(m_ParksLotThread, &QThread::started, &m_timerParksLot, static_cast<void (QTimer::*)()> (&QTimer::start));//主线程statred触发connect(&m_timerParksLot, &QTimer::timeout, this, &DevManager::uploadParkSlotToETC, Qt::DirectConnection);//子线程对象发送的信号 DirectConnection连接 发送者线程(子)执行m_ParksLotThread->start();m_bStarted = true;}return m_bStarted;
}

8.QElapsedTimer

单调时钟,主要记录两个事件之间的时长(准),无法转换为人类可以读取的形式,QTimer非单调时钟,精度与操作系统有关。

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/40175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java8新特性常见用法

Java8新特性 示例类Stream API 使用示例forEach:遍历Stream:创建流map:转换元素filter:过滤元素collect(收集元素) 和 Collectors(分组、连接)sorted 和 comparing(搭配排序)toMap:转换Map元素collectingAndThen:过滤掉相同数据toUpperCase:转大写distinct:去重c…

安装维修制氮设备的注意指南

制氮设备在许多工业领域都发挥着重要作用&#xff0c;无论是确保生产过程中的氮气供应&#xff0c;还是维持设备的稳定运行&#xff0c;正确的安装和维修都是关键。以下是一些重要的注意事项&#xff0c;帮助您顺利完成制氮设备的安装与维修工作。 一、安装注意事项 (一)选址与…

独孤思维:你自己都不相信的副业,怎么能赚钱

要明白&#xff0c;你做副业的目的是什么&#xff1f; 如果你打心眼里&#xff0c;看不上这个项目&#xff0c;或者心不甘情不愿的被动推进项目的实操。 那么我建议你直接放弃。 不要不情愿地去做。 不要当成任务去完成。 如果抱着这份心态去做副业。 你的副业&#xff0…

VUE自定义新增、复制、删除dom元素

功能需求&#xff0c;能灵活新增或删除一个dom元素&#xff0c;在此dom元素中还存在能灵活新增、删除的dom元素。实现后功能图如下&#xff1a; 点击新增策略&#xff0c;能新增整个策略dom 实现思路&#xff1a;定义一个数量和一个数组&#xff0c;然后使用循环遍历展示内容&a…

一种特殊的二叉树 哈夫曼树(Huffman Tree)

哈夫曼树(Huffman Tree)是一种特殊的二叉树,它在信息编码领域有着广泛的应用,特别是在数据压缩技术中。下面我将通过图文结合的方式,详细介绍哈夫曼树的概念、构建方法以及应用场景。 哈夫曼树的概念 哈夫曼树是一种特殊的二叉树,由David Huffman于1952年提出。它主要用…

将iStoreOS部署到VMware ESXi变成路由器

正文共&#xff1a;888 字 19 图&#xff0c;预估阅读时间&#xff1a;1 分钟 前面把iStoreOS部署到了VMware workstation上&#xff08;将iStoreOS部署到VMware Workstation&#xff09;。如果想把iStoreOS直接部署到ESXi上&#xff0c;你会发现转换镜像不能直接生成OVF或者OV…

React Navigation 和 Expo Router

React Navigation 是 React Native 社区最常用的导航库&#xff0c;其具有高度可定制性且性能良好的特性。它提供了一系列导航器&#xff08;如堆栈导航器、标签导航器、抽屉导航器等&#xff09;&#xff0c;可以满足绝大多数的页面导航需求。 Expo Router 是 Expo 官方最新发…

css+js实现导航栏色块跟随滑动+点击后增加样式

这篇文章&#xff0c;我给大家分享一个导航菜单的效果。用cssJS实现&#xff0c;效果如图&#xff1a; 本例实现效果&#xff1a;当鼠标移动到其他菜单项时&#xff0c;会有个背景色块跟随鼠标横向平滑移动。当鼠标点击后&#xff0c;被点击的菜单名称文字字体会加粗。 现在&…

《数字图像处理与机器视觉》案例四 基于分水岭算法的粘连物体的分割与计数

一、引言 分水岭算法&#xff08;Watershed Algorithm&#xff09;&#xff0c;是一种基于拓扑理论的数学形态学的分割方法&#xff0c;其基本思想是把图像看作是测地学上的拓扑地貌&#xff0c;图像中每一点像素的灰度值表示该点的海拔高度&#xff0c;每一个局部极小值及其影…

SpringBoot 集成Swagger在线接口文档 接口注解

介绍 Swagger接口文档是一种自动生成、描述、调用和可视化的RESTful风格Web服务接口文档的工具。它通过一系列的规范和自动化工具&#xff0c;极大地简化了后端开发人员与前端开发人员之间的协作。 依赖 <!--swagger--> <dependency><groupId>io.springfo…

怎么办理固体废物处理处置工程乙级资质

1. 准备工作 企业法人资格&#xff1a;确保企业具有独立法人资格。 注册资本&#xff1a;注册资本不少于100万元人民币。 社会信誉&#xff1a;企业需具有良好社会信誉。 人员配置&#xff1a; 至少配备14名专业技术人员&#xff0c;其中注册人员10名&#xff0c;非注册人…

「媒体邀约」天津媒体资源?媒体邀约宣传报道

传媒如春雨&#xff0c;润物细无声&#xff0c;大家好&#xff0c;我是51媒体网胡老师。 媒体宣传加速季&#xff0c;100万补贴享不停&#xff0c;一手媒体资源&#xff0c;全国100城线下落地执行。详情请联系胡老师。 天津拥有丰富的媒体资源&#xff0c;利用这些资源进行有效…

保护你的JavaScript项目:使用Yarn进行依赖审计

保护你的JavaScript项目&#xff1a;使用Yarn进行依赖审计 在当今快速发展的软件开发领域&#xff0c;依赖管理是项目成功的关键。Yarn&#xff0c;作为一个高效且可靠的JavaScript依赖管理工具&#xff0c;提供了强大的依赖审计功能来帮助开发者识别和修复安全漏洞。本文将详…

ICMP协议详解及尝试用ping和tracert捕抓ICMP报文

一、ICMP协议 1.1、定义 ICMP&#xff08;Internet Control Message Protocol&#xff0c;互联网控制消息协议&#xff09;是一个支持IP层数据完整性的协议&#xff0c;主要用于在IP主机、路由器之间传递控制消息。这些控制消息用于报告IP数据报在传输过程中的错误&#xff0c…

大气热力学(1)——理想气体

本篇文章源自我在 2021 年暑假自学大气物理相关知识时手写的笔记&#xff0c;现转化为电子版本以作存档。相较于手写笔记&#xff0c;电子版的部分内容有补充和修改。笔记内容大部分为公式的推导过程。 文章目录 1.0 本文所用符号一览1.1 理想气体的状态方程1.2 理想气体的压强…

学会拥抱Python六剑客,提高编程效率

在Python语言中&#xff0c;有六个强大的工具&#xff0c;它们被称为"Python六剑客"。而Python六剑客指的是Python中常用的六种功能强大且灵活的工具&#xff0c;它们分别是“切片&#xff08;Slicing&#xff09;&#xff0c;推导列表&#xff08;List Comprehensio…

C++ 语法

一、头文件与源文件 头文件用于声明函数,类似于java中service层的接口; 源文件用于实现头文件函数,相当于java中serviceImpl层的实现类; 定义接口 实现接口 使用接口 二、指针概述 定义与使用 定义一个指针p用于存a变量的内存地址,即指针就是地址; 解引用可以获取或修改…

Android SurfaceFlinger——创建EGLContext(二十五)

前面文章我们获取了 EGL 的最优配置,创建了 EGLSurface 并与 Surface 进行了关联,然后还需要获取 OpenGL ES 的上下文 Context,这也是 EGL 控制接口的三要素(Displays、Contexts 和 Surfaces)之一。 1)getInternalDisplayToken:获取显示屏的 SurfaceControl 令牌(Token…

40岁以上的中年人很难找到工作

关注卢松松&#xff0c;会经常给你分享一些我的经验和观点。 你们有没有发现&#xff0c;90%的40岁以上的中年人&#xff0c;为了多挣钱&#xff0c;几乎除了吃饭和睡觉之外&#xff0c;都在拼命加班劳作&#xff0c;只要一停下来&#xff0c;心里就有一种内疚感&#xff0c;…

【Elasticsearch】Elasticsearch动态映射与静态映射详解

文章目录 &#x1f4d1;前言一、Elasticsearch 映射概述1.1 什么是映射&#xff1f;1.2 映射的分类 二、动态映射2.1 动态映射的定义2.2 动态映射的优点2.3 动态映射的缺点2.4 动态映射的应用场景2.5 动态映射的配置示例 三、静态映射3.1 静态映射的定义3.2 静态映射的优点3.3 …