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

溫馨提示×

溫馨提示×

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

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

Linux C++多線程與并發數據結構的實現

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

在Linux環境下,使用C++實現多線程和并發數據結構需要依賴于一些庫和工具,如POSIX線程庫(pthread)和C++11標準中的線程支持

  1. 多線程的實現:

在Linux環境下,可以使用POSIX線程庫(pthread)來實現多線程。以下是一個簡單的C++多線程示例:

#include <iostream>
#include <pthread.h>

void* print_hello(void* arg) {
    std::cout << "Hello from thread " << pthread_self() << std::endl;
    return nullptr;
}

int main() {
    pthread_t threads[5];
    int rc;

    for (int i = 0; i < 5; ++i) {
        rc = pthread_create(&threads[i], nullptr, print_hello, nullptr);
        if (rc != 0) {
            std::cerr << "Error creating thread "<< i << std::endl;
            return 1;
        }
    }

    for (int i = 0; i < 5; ++i) {
        pthread_join(threads[i], nullptr);
    }

    return 0;
}
  1. 并發數據結構的實現:

在Linux環境下,可以使用C++11標準中的線程支持來實現并發數據結構。以下是一個簡單的線程安全隊列示例:

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

template <typename T>
class ThreadSafeQueue {
public:
    void push(const T& value) {
        std::unique_lock<std::mutex> lock(mutex_);
        queue_.push(value);
        lock.unlock();
        cond_var_.notify_one();
    }

    bool pop(T& value) {
        std::unique_lock<std::mutex> lock(mutex_);
        while (queue_.empty()) {
            cond_var_.wait(lock);
        }
        value = queue_.front();
        queue_.pop();
        return true;
    }

private:
    std::queue<T> queue_;
    std::mutex mutex_;
    std::condition_variable cond_var_;
};

void producer(ThreadSafeQueue<int>& queue) {
    for (int i = 0; i < 10; ++i) {
        queue.push(i);
        std::cout << "Produced: "<< i << std::endl;
    }
}

void consumer(ThreadSafeQueue<int>& queue) {
    int value;
    for (int i = 0; i < 10; ++i) {
        if (queue.pop(value)) {
            std::cout << "Consumed: " << value << std::endl;
        }
    }
}

int main() {
    ThreadSafeQueue<int> queue;
    std::thread producer_thread(producer, std::ref(queue));
    std::thread consumer_thread(consumer, std::ref(queue));

    producer_thread.join();
    consumer_thread.join();

    return 0;
}

在這個示例中,我們實現了一個線程安全的隊列,它使用互斥鎖(mutex)來保護隊列的訪問,并使用條件變量(condition_variable)來實現線程間的同步。生產者線程向隊列中添加元素,消費者線程從隊列中取出元素。通過這種方式,我們可以實現一個簡單的并發數據結構。

向AI問一下細節

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

c++
AI

隆昌县| 临夏市| 涟源市| 保山市| 石屏县| 登封市| 濉溪县| 敦化市| 朔州市| 宾阳县| 藁城市| 东阿县| 江口县| 榆林市| 稷山县| 泊头市| 万安县| 德保县| 阳春市| 伽师县| 荃湾区| 册亨县| 玛纳斯县| 和林格尔县| 镇江市| 建德市| 玉山县| 灵川县| 建瓯市| 手机| 连南| 沂南县| 迁西县| 曲麻莱县| 婺源县| 饶阳县| 昌宁县| 西丰县| 惠州市| 育儿| 黄浦区|