溫馨提示×

溫馨提示×

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

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

Linux C++多線程與并發(fā)數(shù)據(jù)結(jié)構(gòu)的實(shí)現(xiàn)

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

在Linux環(huán)境下,使用C++實(shí)現(xiàn)多線程和并發(fā)數(shù)據(jù)結(jié)構(gòu)需要依賴于一些庫和工具,如POSIX線程庫(pthread)和C++11標(biāo)準(zhǔn)中的線程支持

  1. 多線程的實(shí)現(xiàn):

在Linux環(huán)境下,可以使用POSIX線程庫(pthread)來實(shí)現(xiàn)多線程。以下是一個簡單的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. 并發(fā)數(shù)據(jù)結(jié)構(gòu)的實(shí)現(xiàn):

在Linux環(huán)境下,可以使用C++11標(biāo)準(zhǔn)中的線程支持來實(shí)現(xiàn)并發(fā)數(shù)據(jù)結(jié)構(gòu)。以下是一個簡單的線程安全隊(duì)列示例:

#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;
}

在這個示例中,我們實(shí)現(xiàn)了一個線程安全的隊(duì)列,它使用互斥鎖(mutex)來保護(hù)隊(duì)列的訪問,并使用條件變量(condition_variable)來實(shí)現(xiàn)線程間的同步。生產(chǎn)者線程向隊(duì)列中添加元素,消費(fèi)者線程從隊(duì)列中取出元素。通過這種方式,我們可以實(shí)現(xiàn)一個簡單的并發(fā)數(shù)據(jù)結(jié)構(gòu)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI