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

溫馨提示×

C++信號量如何用于線程間通信

c++
小樊
84
2024-07-05 19:30:21
欄目: 編程語言

在C++中,信號量可以通過使用std::mutexstd::condition_variable來實現。下面是一個簡單的例子,展示了如何使用信號量進行線程間通信。

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

std::mutex mtx;
std::condition_variable cv;
int semaphore = 0;

void producer() {
    while (true) {
        std::unique_lock<std::mutex> lock(mtx);
        
        // Produce some data
        
        semaphore++;
        cv.notify_one();
        
        lock.unlock();
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }
}

void consumer() {
    while (true) {
        std::unique_lock<std::mutex> lock(mtx);
        
        cv.wait(lock, []{ return semaphore > 0; });
        
        // Consume the data
        
        semaphore--;
        
        lock.unlock();
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }
}

int main() {
    std::thread producerThread(producer);
    std::thread consumerThread(consumer);
    
    producerThread.join();
    consumerThread.join();
    
    return 0;
}

在上面的例子中,semaphore變量用于表示生產者和消費者之間的信號量。生產者生產數據后,會增加semaphore的值并通知消費者;消費者在收到通知后會減少semaphore的值并消費數據。通過std::condition_variable實現了線程之間的通信和同步。

0
达孜县| 晋宁县| 中阳县| 麻江县| 凤凰县| 鄂州市| 罗田县| 永平县| 宜昌市| 五大连池市| 娱乐| 灵丘县| 涞源县| 泾阳县| 连平县| 吉木乃县| 汝城县| 涞源县| 丽江市| 万年县| 宁强县| 漯河市| 宁夏| 翁牛特旗| 舟曲县| 鞍山市| 多伦县| 铜鼓县| 白城市| 广昌县| 上杭县| 漳州市| 万载县| 新和县| 红原县| 新乡市| 砀山县| 阜平县| 汉寿县| 吐鲁番市| 天台县|