c++ thread mutex

复制代码
#include <iostream>       // std::cout
#include <thread>         // std::thread
#include <mutex>          // std::mutex

volatile int counter(0); // non-atomic counter
std::mutex mtx;           // locks access to counter

void increases_10k()
{
    for (int i=0; i<10000; ++i) {
        // 1. 使用try_lock的情况
        // if (mtx.try_lock()) {   // only increase if currently not locked:
        //     ++counter;
        //     mtx.unlock();
        // }
        // 2. 使用lock的情况
               {
                   mtx.lock();
                   ++counter;
                   mtx.unlock();
               }
    }
}

int main()
{
    std::thread threads[10];
    for (int i=0; i<10; ++i)
        threads[i] = std::thread(increases_10k);

    for (auto& th : threads) th.join();
    std::cout << " successful increases of the counter "  << counter << std::endl;

    return 0;
}

std::lock_guard 是 C++ 标准库中提供的一个模板类,用于在其构造时自动获取锁,在析构时自动释放锁。使用 std::lock_guard 的好处是,当 std::lock_guard 对象离开其作用域时,会自动调用析构函数,该析构函数会释放锁。这确保了在任何情况下(包括由于异常等原因导致的提前退出),锁都会被正确释放,从而避免了忘记手动释放锁而导致的死锁问题。

复制代码
#include <iostream>
#include <thread>
#include <mutex>

std::mutex mtx;
volatile int sharedData(0);

void threadModifySharedData(int threadId){
    
    //1.
    std::cout << "threadId:" << threadId << std::endl;

    //2.add loack
    std::lock_guard<std::mutex> lock(mtx);

    //3.
    std::cout << "thread sharedData:" << sharedData << std::endl;

    //4.modif sharedData
    sharedData++;

}


int main(void){

    const size_t numThread = 10;
    std::thread threads[numThread];

    for(size_t i = 0; i < numThread; i++)
        threads[i] = std::thread(threadModifySharedData, i+1);

    for(size_t i = 0; i < numThread; i++)
        threads[i].join();

    std::cout << "main sharedData:" << sharedData << std::endl;

    return 0;
}

std::recursive_mutex:递归互斥锁,允许同一个线程多次锁定

复制代码
#include <iostream>
#include <mutex>
#include <thread>

struct Complx{
    int i;
    std::recursive_mutex mtx;

    Complx(int ii= 10):i(ii){
        std::cout << "Complx(int ii):i(ii)" << std::endl;
    }

    ~Complx(void){
        std::cout << "~Complx(void)" << std::endl;
    }

    void mul(int x){
        std::lock_guard<std::recursive_mutex> lock(mtx);
        i *= x;
    }

    void div(int x){
        std::lock_guard<std::recursive_mutex> lock(mtx);
        i += x;
    }

    void both(int x, int y){
        std::lock_guard<std::recursive_mutex> lock(mtx);
        mul(x);
        div(y);
    }
};

int main(void){
    Complx cpx(200);

    cpx.both(100,200);

    std::cout << "i:" << cpx.i << std::endl;

    return 0;
}
相关推荐
yuhao__z8 分钟前
代码随想录算法训练营第六十天| 图论7—卡码网53. 寻宝
算法·图论
易只轻松熊10 分钟前
C++(1):整数常量
开发语言·c++
努力的搬砖人.18 分钟前
Java 线程池原理
java·开发语言
AI Echoes20 分钟前
大模型(LLMs)强化学习——RLHF及其变种
人工智能·深度学习·算法·机器学习·chatgpt
Dovis(誓平步青云)27 分钟前
精讲C++四大核心特性:内联函数加速原理、auto智能推导、范围for循环与空指针进阶
c语言·开发语言·c++·笔记·算法·学习方法
孞㐑¥37 分钟前
Linux之进程概念
linux·c++·经验分享·笔记
passionSnail44 分钟前
《用MATLAB玩转游戏开发》Flappy Bird:小鸟飞行大战MATLAB趣味实现
开发语言·matlab
jz_ddk44 分钟前
[学习]RTKLib详解:convkml.c、convrnx.c与geoid.c
c语言·开发语言·学习
stevenzqzq1 小时前
kotlin flow防抖
开发语言·kotlin·flow
极小狐1 小时前
如何从极狐GitLab 容器镜像库中删除容器镜像?
java·linux·开发语言·数据库·python·elasticsearch·gitlab