亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Linux C++中實現線程的優雅退出

發布時間:2024-11-15 18:38:01 來源:億速云 閱讀:83 作者:小樊 欄目:編程語言

在 Linux 中,使用 C++ 實現線程的優雅退出可以通過以下方法:

  1. 使用條件變量(Condition Variable):

條件變量可以用于線程間的同步。當一個線程需要通知其他線程退出時,可以使用條件變量。這里是一個簡單的例子:

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

std::mutex mtx;
std::condition_variable cv;
bool exit_flag = false;

void worker() {
    std::unique_lock<std::mutex> lock(mtx);
    while (!exit_flag) {
        // 執行任務
        std::cout << "Working...\n";

        // 等待一段時間
        cv.wait_for(lock, std::chrono::seconds(1));
    }
}

int main() {
    std::vector<std::thread> threads;
    for (int i = 0; i < 5; ++i) {
        threads.emplace_back(worker);
    }

    std::this_thread::sleep_for(std::chrono::seconds(3));
    {
        std::lock_guard<std::mutex> lock(mtx);
        exit_flag = true;
    }
    cv.notify_all();

    for (auto& t : threads) {
        t.join();
    }

    return 0;
}
  1. 使用原子操作(Atomic Operations):

原子操作可以確保在多線程環境下對共享數據的操作是線程安全的。這里是一個簡單的例子:

#include <iostream>
#include <thread>
#include <atomic>
#include <vector>

std::atomic<bool> exit_flag(false);

void worker() {
    while (!exit_flag) {
        // 執行任務
        std::cout << "Working...\n";

        // 等待一段時間
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }
}

int main() {
    std::vector<std::thread> threads;
    for (int i = 0; i < 5; ++i) {
        threads.emplace_back(worker);
    }

    std::this_thread::sleep_for(std::chrono::seconds(3));
    exit_flag = true;

    for (auto& t : threads) {
        t.join();
    }

    return 0;
}

在這兩個例子中,我們創建了一個名為 exit_flag 的共享變量,用于通知線程退出。當主線程需要通知所有工作線程退出時,它將 exit_flag 設置為 true。工作線程會檢查 exit_flag 的值,如果為 true,則退出循環并結束線程。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

建水县| 苍溪县| 澳门| 华安县| 巴中市| 开原市| 东方市| 阿坝县| 确山县| 洪泽县| 马边| 墨竹工卡县| 陵水| 安西县| 郧西县| 黑山县| 观塘区| 广东省| 岳普湖县| 乐安县| 吉隆县| 木兰县| 临湘市| 临洮县| 湘西| 临江市| 广宁县| 乌兰县| 白银市| 寿宁县| 太湖县| 沂水县| 杭州市| 平阳县| 南和县| 呼图壁县| 吴旗县| 江油市| 博爱县| 乡宁县| 姚安县|