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

溫馨提示×

溫馨提示×

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

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

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

灵寿县| 芜湖市| 山西省| 弥渡县| 金塔县| 浑源县| 普安县| 乌兰察布市| 平阴县| 宁武县| 文成县| 姚安县| 宽甸| 梓潼县| 济阳县| 工布江达县| 资源县| 拉萨市| 芮城县| 胶州市| 南川市| 南靖县| 四川省| 奎屯市| 东丽区| 米泉市| 岑巩县| 灵台县| 黄平县| 德阳市| 溧水县| 彰武县| 宿迁市| 梁河县| 邹平县| 北川| 保靖县| 集安市| 中宁县| 新乡县| 沧州市|