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

溫馨提示×

溫馨提示×

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

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

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

勐海县| 玉溪市| 滨海县| 陆良县| 岑巩县| 陕西省| 靖边县| 随州市| 孝感市| 孙吴县| 塘沽区| 岚皋县| 蓬莱市| 山西省| 曲水县| 衡山县| 阜城县| 钦州市| 井陉县| 桃江县| 手游| 浦江县| 花莲县| 沭阳县| 龙陵县| 定襄县| 汾阳市| 桐乡市| 郑州市| 三门县| 莱西市| 无棣县| 会同县| 沂南县| 松阳县| 晋中市| 房山区| 大足县| 改则县| 道孚县| 兰西县|