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

溫馨提示×

c++分支如何進行并發控制

c++
小樊
81
2024-11-24 15:43:58
欄目: 編程語言

在C++中,可以使用多種方法進行分支并發控制。以下是一些建議:

  1. 使用互斥鎖(std::mutex):互斥鎖可以確保在同一時刻只有一個線程訪問共享資源。當一個線程獲得鎖時,其他線程必須等待直到鎖被釋放。
#include <iostream>
#include <thread>
#include <mutex>

std::mutex mtx;
int shared_resource = 0;

void thread_func(int id) {
    for (int i = 0; i < 1000; ++i) {
        mtx.lock();
        shared_resource++;
        mtx.unlock();
    }
}

int main() {
    std::thread t1(thread_func, 1);
    std::thread t2(thread_func, 2);

    t1.join();
    t2.join();

    std::cout << "Shared resource: " << shared_resource << std::endl;

    return 0;
}
  1. 使用原子操作(std::atomic):原子操作是一種特殊的操作,它可以在不使用鎖的情況下保證線程安全。原子操作是不可中斷的,因此它們可以避免死鎖和其他并發問題。
#include <iostream>
#include <thread>
#include <atomic>

std::atomic<int> shared_resource(0);

void thread_func(int id) {
    for (int i = 0; i < 1000; ++i) {
        shared_resource++;
    }
}

int main() {
    std::thread t1(thread_func, 1);
    std::thread t2(thread_func, 2);

    t1.join();
    t2.join();

    std::cout << "Shared resource: " << shared_resource.load() << std::endl;

    return 0;
}
  1. 使用條件變量(std::condition_variable):條件變量可以用于線程間的同步,它們允許一個線程等待某個條件成立,而另一個線程在條件滿足時通知等待的線程。
#include <iostream>
#include <thread>
#include <mutex>
#include <condition_variable>

std::mutex mtx;
std::condition_variable cv;
int shared_resource = 0;
bool ready = false;

void thread_func(int id) {
    std::unique_lock<std::mutex> lock(mtx);
    cv.wait(lock, [] { return ready; });

    for (int i = 0; i < 1000; ++i) {
        shared_resource++;
    }
}

int main() {
    std::thread t1(thread_func, 1);
    std::thread t2(thread_func, 2);

    {
        std::lock_guard<std::mutex> lock(mtx);
        ready = true;
    }
    cv.notify_all();

    t1.join();
    t2.join();

    std::cout << "Shared resource: " << shared_resource << std::endl;

    return 0;
}

這些方法可以根據具體需求進行組合使用,以實現更復雜的并發控制策略。

0
噶尔县| 通化县| 镇雄县| 深州市| 泰兴市| 舒兰市| 洛南县| 荔波县| 安丘市| 黄梅县| 三江| 宁德市| 阿拉善盟| 昭觉县| 昌江| 右玉县| 娄底市| 河西区| 崇州市| 桐乡市| 青神县| 鄂托克前旗| 东辽县| 象山县| 闵行区| 恩平市| 厦门市| 万年县| 衡东县| 安仁县| 中方县| 安远县| 临安市| 油尖旺区| 普定县| 潮安县| 盖州市| 冀州市| 雅江县| 东乡县| 格尔木市|