中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在C++中實現線程類的安全退出

c++
小樊
101
2024-08-29 22:43:50
欄目: 編程語言

在C++中,為了實現線程類的安全退出,可以使用以下方法:

  1. 使用std::atomic<bool>標志來控制線程的退出。
  2. 使用std::condition_variable來通知線程退出。
  3. 使用std::mutex來保護共享數據。
  4. 使用std::threadjoin()方法來等待線程安全地退出。

下面是一個簡單的示例,展示了如何實現線程類的安全退出:

#include<iostream>
#include<atomic>
#include<condition_variable>
#include <mutex>
#include<thread>

class ThreadSafeExit {
public:
    ThreadSafeExit() : stop_(false) {
        thread_ = std::thread(&ThreadSafeExit::run, this);
    }

    ~ThreadSafeExit() {
        stop();
    }

    void stop() {
        if (!stop_.load()) {
            stop_.store(true);
            cv_.notify_one();
            thread_.join();
        }
    }

private:
    void run() {
        while (!stop_.load()) {
            // 在這里執行你的任務
            std::unique_lock<std::mutex> lock(mutex_);
            cv_.wait(lock, [this] { return stop_.load(); });
        }
    }

    std::atomic<bool> stop_;
    std::condition_variable cv_;
    std::mutex mutex_;
    std::thread thread_;
};

int main() {
    ThreadSafeExit tse;
    // 在這里執行其他任務
    tse.stop();
    return 0;
}

在這個示例中,我們創建了一個名為ThreadSafeExit的類,它包含一個std::atomic<bool>類型的標志stop_,用于控制線程的退出。當stop()方法被調用時,stop_會被設置為true,并通過std::condition_variablenotify_one()方法通知線程退出。線程在執行任務時會定期檢查stop_的值,如果發現stop_true,則退出循環并結束線程。最后,我們在析構函數中調用stop()方法來確保線程安全地退出。

0
正宁县| 惠安县| 耒阳市| 维西| 宜川县| 博罗县| 武义县| 五峰| 镇雄县| 巴彦县| 梁河县| 广德县| 石柱| 聊城市| 彭山县| 大港区| 台州市| 筠连县| 兰州市| 宁乡县| 宁远县| 陆河县| 贺州市| 鹿邑县| 江油市| 潜江市| 五莲县| 文成县| 浮山县| 镇坪县| 华蓥市| 灵璧县| 翁牛特旗| 大兴区| 泸州市| 锡林郭勒盟| 呼图壁县| 时尚| 沅江市| 杭锦旗| 定安县|