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

溫馨提示×

C++中如何實現信號量以同步多個進程

c++
小億
101
2024-04-02 13:49:06
欄目: 編程語言

在C++中實現信號量可以使用std::mutexstd::condition_variable來實現。下面是一個簡單的示例代碼來展示如何使用這兩個類來實現信號量:

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

class Semaphore {
public:
    Semaphore(int count) : count(count) {}

    void wait() {
        std::unique_lock<std::mutex> lock(mutex);
        while (count <= 0) {
            cv.wait(lock);
        }
        count--;
    }

    void signal() {
        std::unique_lock<std::mutex> lock(mutex);
        count++;
        cv.notify_one();
    }

private:
    int count;
    std::mutex mutex;
    std::condition_variable cv;
};

Semaphore semaphore(1);

void process() {
    for (int i = 0; i < 5; i++) {
        semaphore.wait();
        std::cout << "Thread ID: " << std::this_thread::get_id() << " is executing" << std::endl;
        semaphore.signal();
    }
}

int main() {
    std::thread t1(process);
    std::thread t2(process);
    
    t1.join();
    t2.join();
    
    return 0;
}

在這個示例代碼中,我們定義了一個Semaphore類,其中包含waitsignal方法用于等待和通知信號量。在process函數中,我們創建了兩個線程來模擬多個進程同時執行,每個線程在執行前會等待信號量,然后執行完畢后通知信號量。通過使用std::mutexstd::condition_variable來實現信號量,我們可以實現多個進程之間的同步。

0
六枝特区| 永康市| 定日县| 崇文区| 阿克陶县| 新兴县| 遂昌县| 澎湖县| 贞丰县| 阜新市| 中方县| 隆化县| 鱼台县| 应用必备| 渑池县| 佛坪县| 江北区| 收藏| 黎城县| 徐州市| 惠来县| 高密市| 余庆县| 涟源市| 岱山县| 林口县| 阿克| 阿克苏市| 富平县| 保康县| 泰安市| 磴口县| 麦盖提县| 烟台市| 吐鲁番市| 元江| 泰宁县| 阿坝| 隆回县| 桐庐县| 石门县|