한국어
Qt
 

C++ Class QThread 및 QMutex 예제

makersweb 2021.01.12 21:25 조회 수 : 7093

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

#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 122706
60 main함수 명령줄 옵션 해석 makersweb 2020.09.01 8523
59 Qt 6.0의 개발 호스트 및 대상 플랫폼 makersweb 2020.09.16 8805
58 Qt 6에서 QList 변경사항 makersweb 2020.10.08 5495
57 QRandomGenerator 클래스를 사용하여 난수(random values) 생성 makersweb 2020.10.17 6678
56 Qt 6의 비동기 API makersweb 2020.10.19 5605
55 QML과 코루틴(Coroutines) makersweb 2020.11.03 5709
54 QML 바인딩 끊김 진단 makersweb 2020.11.08 5401
53 Qt Quick Controls 2에 네이티브 데스크탑 스타일 추가 file makersweb 2020.11.23 7262
52 Qt5Compat 라이브러리를 사용하여 Qt5에서 Qt6로 포팅 [2] makersweb 2020.12.05 5203
51 그래픽 소프트웨어에서 디자인 내보내기 (Exporting Designs from Graphics Software) j2doll 2020.12.25 5624
» QThread 및 QMutex 예제 makersweb 2021.01.12 7093
49 Loader를 사용하여 동적으로 QML 로드 makersweb 2021.01.19 7423
48 Qt 를 사용하거나 기반으로 하는 응용프로그램 file makersweb 2021.01.30 10227
47 Qt MQTT의 pus/sub 튜토리얼 file makersweb 2021.02.06 7483
46 C++로 작성한 클래스를 QML에서 생성 file makersweb 2021.02.10 10435
45 Qt 5 코드를 Qt 6로 포팅하기 위해 도움이 되는 Clazy Framework file makersweb 2021.03.01 5624
44 QML과 JavaScript 의 숫자 관련 내장된 함수 makersweb 2021.03.28 7016
43 Qt 6 에서 프로퍼티 바인딩 makersweb 2021.04.03 4873
42 응용프로그램 자동실행 설정 (on Windows) makersweb 2021.05.08 5185
41 싱글 샷(Single-Shot) 시그널/슬롯 연결 makersweb 2021.05.12 7691