91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在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

贞丰县| 隆回县| 门源| 界首市| 揭西县| 金平| 体育| 阳山县| 出国| 资源县| 蒙城县| 成安县| 定日县| 靖江市| 凤城市| 甘孜县| 南宫市| 突泉县| 齐齐哈尔市| 曲周县| 潜山县| 江油市| 张掖市| 平谷区| 滕州市| 全南县| 高州市| 瑞昌市| 清徐县| 丽江市| 东兰县| 闽清县| 南和县| 湟中县| 雷州市| 天津市| 水富县| 陈巴尔虎旗| 黔东| 耒阳市| 收藏|