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

溫馨提示×

溫馨提示×

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

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

C++多線程在Linux下的線程安全集合操作

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

在Linux下,使用C++多線程時,線程安全集合操作是非常重要的

  1. 使用互斥鎖(std::mutex):

互斥鎖是最基本的同步原語,用于確保在同一時刻只有一個線程可以訪問共享資源。C++標準庫提供了std::mutex類,可以用來保護共享數據。

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

std::mutex mtx;
std::vector<int> shared_data;

void add_data(int value) {
    std::lock_guard<std::mutex> lock(mtx);
    shared_data.push_back(value);
}

int main() {
    std::thread t1(add_data, 1);
    std::thread t2(add_data, 2);

    t1.join();
    t2.join();

    for (int value : shared_data) {
        std::cout << value << " ";
    }

    return 0;
}
  1. 使用原子操作(std::atomic):

原子操作是一種特殊的操作,可以在不使用鎖的情況下保證線程安全。C++標準庫提供了std::atomic模板類,可以用來保護簡單的數據類型。

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

std::vector<int> shared_data;
std::atomic<int> counter(0);

void add_data(int value) {
    int index = counter.fetch_add(1);
    shared_data[index] = value;
}

int main() {
    std::thread t1(add_data, 1);
    std::thread t2(add_data, 2);

    t1.join();
    t2.join();

    for (int value : shared_data) {
        std::cout << value << " ";
    }

    return 0;
}
  1. 使用線程安全容器(std::concurrent_queue):

C++標準庫提供了std::concurrent_queue模板類,這是一個線程安全的隊列實現,可以在多線程環境下安全地使用。

#include <iostream>
#include <thread>
#include <concurrent_queue>

std::concurrent_queue<int> shared_queue;

void add_data(int value) {
    shared_queue.push(value);
}

void process_data() {
    int value;
    while (true) {
        if (shared_queue.try_pop(value)) {
            std::cout << value << " ";
        } else {
            std::this_thread::yield();
        }
    }
}

int main() {
    std::thread t1(add_data, 1);
    std::thread t2(add_data, 2);
    std::thread t3(process_data);

    t1.join();
    t2.join();
    t3.join();

    return 0;
}

注意:std::concurrent_queue不支持迭代器,因此不能像其他容器那樣遍歷它。在使用時,需要根據具體需求選擇合適的線程安全集合操作。

向AI問一下細節

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

c++
AI

宜阳县| 连州市| 武宣县| 喀喇沁旗| 赤城县| 奉贤区| 蒲城县| 阿克陶县| 周口市| 迭部县| 紫金县| 漠河县| 衡阳市| 巴里| 盈江县| 抚松县| 阿克苏市| 滨海县| 宜丰县| 西贡区| 安康市| 桑日县| 尚义县| 内江市| 新安县| 成安县| 桐梓县| 涟水县| 平遥县| 益阳市| 遵化市| 河源市| 囊谦县| 柳州市| 吴忠市| 海盐县| 象州县| 洛川县| 图们市| 朝阳区| 满洲里市|