Qt多线程同步常用的类整理

本文整理了Qt中用于多线程同步的几个关键类,包括QWaitCondition、QMutex、QSemaphore、QMutexLocker、QReadWriteLock及其相关用法。通过示例解释了它们在生产者消费者问题中的应用,以及各种锁的特性和使用场景,帮助理解如何在多线程环境中实现资源的有序访问。
摘要由CSDN通过智能技术生成

序言

Qt多线程同步常用类进行整理,然后区分它们的作用,能更好的去实现多线程应用程序。

QWaitCondition

The QWaitCondition class provides a condition variable for synchronizing threads.

QWaitCondition allows a thread to tell other threads that some sort of condition has been met. One or many threads can block waiting for a QWaitCondition to set a condition with wakeOne() or wakeAll(). Use wakeOne() to wake one randomly selected thread or wakeAll() to wake them all.

它可以用来阻塞某个线程,当满足某个条件时,可以提供过wakeOne 或者wakeAll,设置等待时间去激活线程。

bool QWaitCondition::wait(QMutex *lockedMutex, unsigned long time = ULONG_MAX)

Releases the lockedMutex and waits on the wait condition. The lockedMutex must be initially locked by the calling thread. If lockedMutex is not in a locked state, the behavior is undefined. If lockedMutex is a recursive mutex, this function returns immediately. The lockedMutex will be unlocked, and the calling thread will block until either of these conditions is met:

1. Another thread signals it using wakeOne() or wakeAll(). This function will return true in this case.

2. time milliseconds has elapsed. If time is ULONG_MAX (the default), then the wait will never timeout (the event must be signalled). This function will return false if the wait timed out.

The lockedMutex will be returned to the same locked state. This function is provided to allow the atomic transition from the locked state to the wait state.

从锁态到等待状态为原子操作,当被激活后,又返回到原来的锁态。

以下用某个代码解释, 一个生产者线程、消费者线程去共享一个数据池,然后当数据池满后,阻塞生产者线程,如果数据池空后,阻塞消费者线程。

class Producer : public QThread
 {
 public:
     Producer(QObject *parent = NULL) : QThread(parent)
     {
     }
protected:
     void run();
 };
class Consumer : public QThread
{
    Q_OBJECT
public:
    Consumer(QObject *parent = NULL) : QThread(parent)
    {
    }
protected:
    void run();
};
#include <QWaitCondition>
#include <QMutex>
#include <QRandomGenerator>
#include <QDebug>

const int DataSize = 1000;
const int BufferSize = 20;
int buffer[BufferSize];
QWaitCondition bufferNotEmpty;
QWaitCondition bufferNotFull;
QMutex mutex;
int numUsedBytes = 0;

void Producer::run()
{
    for (int i = 0; i < DataSize; ++i)
    {
        mutex.lock();
        if (numUsedBytes == BufferSize)
            bufferNotFull.wait(&mutex);
        mutex.unlock();
        buffer[i % BufferSize] = QRandomGenerator::global()->bounded(100);
        qDebug() << " current  Consumer thread id = " << QThread::currentThreadId() << " producer " << buffer[i % BufferSize];
        mutex.lock();
        ++numUsedBytes;
        bufferNotEmpty.wakeAll();
        mutex.unlock();
    }
}

void Consumer::run()
{
    for (int i = 0; i < DataSize; ++i)
    {
        mutex.lock();
        if (numUsedBytes == 0)
            bufferNotEmpty.wait(&mutex);
        mutex.unlock();
        qDebug() << " current  Consumer thread id = " << QThread::currentThreadId() << " take over " << buffer[i % BufferSize];
        mutex.lock();
        --numUsedBytes;
        bufferNotFull.wakeAll();
        mutex.unlock();
    }
}

QMutex

The QMutex class provides access serialization b
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

道阻且长,行则降至

无聊,打赏求刺激而已

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值