qt create Linux 关于Qmutexlocker使用
时间: 2024-03-21 08:38:07 浏览: 63
Qt_Creator的使用
在 Qt 中,QMutexLocker 是一个非常有用的类,用于在执行代码块期间锁定 QMutex 对象,以确保同一时间只有一个线程可以访问共享资源。以下是在 Linux 系统上使用 QMutexLocker 的示例代码:
```c++
#include <QMutex>
#include <QMutexLocker>
#include <QDebug>
QMutex mutex;
void myThreadFunction()
{
QMutexLocker locker(&mutex);
// 在这里执行需要互斥访问的代码
qDebug() << "Thread ID:" << QThread::currentThreadId() << "is running.";
// 代码块结束时,QMutexLocker 自动解锁 mutex
}
int main(int argc, char *argv[])
{
// 创建两个线程,并启动它们
QThread thread1;
QThread thread2;
QObject::connect(&thread1, &QThread::started, [](){ myThreadFunction(); });
QObject::connect(&thread2, &QThread::started, [](){ myThreadFunction(); });
thread1.start();
thread2.start();
// 等待两个线程执行完毕
thread1.wait();
thread2.wait();
return 0;
}
```
在上面的示例代码中,我们创建了一个名为 mutex 的 QMutex 对象,并在 myThreadFunction() 函数中使用 QMutexLocker 对象锁定了 mutex。这样就可以确保在任何时候,只有一个线程可以执行 myThreadFunction() 函数中的代码块,从而保证了共享资源的安全性。
需要注意的是,使用 QMutexLocker 可以避免出现锁定和解锁之间的错误,因为 QMutexLocker 会在代码块结束时自动解锁 mutex,从而避免了意外的解锁或未解锁的情况。
阅读全文