한국어
Qt
 

C++ Class QThread 및 QMutex 예제

makersweb 2021.01.12 21:25 조회 수 : 1358

멀티 스레드에서 공유 리소스에 대한 동시 액세스로 인해 경합이 발생할 수 있다. 다음은 멀티스레드에서 안전하지 않은 전형적인 예를 보여준다. 

#include <QThread>

class Thread : public QThread
{
    bool m_cancel;
public:
    explicit Thread(QObject *parent = nullptr)
        : QThread(parent), m_cancel(false) {}
    
    void cancel() // called by GUI
    {
        m_cancel = true;
    }
    
private:
    bool isCanceled() const // called by run()
    {
        return m_cancel;
    }
    
    void run() override { // reimplemented from QThread
        while (!isCanceled())
            doSomething();
    }
};

 

다음은 QMutex 를 사용하여 스레드를 동기화는 방법을 보여준다.

#include <QThread>

class Thread : public QThread
{
    mutable QMutex m_mutex; // protects m_cancel
    bool m_cancel;
public:
    explicit Thread(QObject *parent = nullptr)
        : QThread(parent), m_cancel(false) {}
    
    void cancel() { // called by GUI
        const QMutexLocker locker(&m_mutex);
        m_cancel = true;
    }
    
private:
    bool isCanceled() const { // called by run()
        const QMutexLocker locker(&m_mutex);
        return m_cancel;
    }
    
    void run() override { // reimplemented from QThread
        while (!isCanceled())
            doSomething();
    }
};

 

번호 제목 글쓴이 날짜 조회 수
공지 Qt프로그래밍(QtQuick) Beginner를 위한 글 읽는 순서 운영자 2019.01.05 86182
159 clazy 로 13개의 시그널, 슬롯 오류 해결 makersweb 2022.08.23 579
158 QML과 코루틴(Coroutines) makersweb 2020.11.03 582
157 최초의 Qt 6.0 스냅샷 제공 (First Qt 6.0 Snapshot Available) j2doll 2020.06.21 594
156 QProcess 보안 권고 리뷰 file makersweb 2022.09.18 602
155 QML의 사용자 정의 Image makersweb 2023.09.17 605
154 Qt Marketplace 발표 makersweb 2019.12.02 617
153 Embedded Linux 에서 Qt 및 Graphics Stack file 운영자 2020.05.27 619
152 OpacityMask 예제 file makersweb 2023.01.26 657
151 Qt Bluetooth Low Energy 개요 makersweb 2022.02.13 678
150 Qt 응용프로그램에서 PDF 문서 렌더링 file makersweb 2021.09.23 679
149 Qt5Compat 라이브러리를 사용하여 Qt5에서 Qt6로 포팅 [2] makersweb 2020.12.05 685
148 클라우드용 Qt file makersweb 2024.01.16 696
147 단일 인스턴스 Qt 응용 프로그램(Single-instance Application) makersweb 2022.06.23 707
146 QML에서 D-Bus 통신 file makersweb 2023.03.15 712
145 2020년에 변경되는 Qt 오퍼 (Qt offering changes 2020) [2] j2doll 2020.01.31 723
144 Qt for MCU 1.0 릴리즈 makersweb 2019.12.10 753
143 싱글 샷(Single-Shot) 시그널/슬롯 연결 makersweb 2021.05.12 757
142 Q_D매크로와 d-pointer file makersweb 2019.05.07 762
141 Qt Bluetooth 관련 기능 확인 사항 makersweb 2018.07.10 770
140 Qt 6 에서 프로퍼티 바인딩 makersweb 2021.04.03 776