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;
}
相关推荐
你可以自己看26 分钟前
python的基础语法
开发语言·python
爱编程的小新☆28 分钟前
C语言内存函数
c语言·开发语言·学习
程序猿阿伟32 分钟前
《C++移动语义:解锁复杂数据结构的高效之道》
数据结构·c++·html
尘浮生1 小时前
Java项目实战II基于Spring Boot的宠物商城网站设计与实现
java·开发语言·spring boot·后端·spring·maven·intellij-idea
勤奋的小王同学~1 小时前
怎么修改mvn的java版本
java·开发语言
夜清寒风1 小时前
opencv学习:图像掩码处理和直方图分析及完整代码
人工智能·opencv·学习·算法·机器学习·计算机视觉
594h21 小时前
PAT 甲级 1002题
数据结构·c++·算法
doc_wei1 小时前
Java小区物业管理系统
java·开发语言·spring boot·spring·毕业设计·课程设计·毕设
三玖诶2 小时前
在 Qt 中使用 QLabel 设置 GIF 动态背景
开发语言·qt·命令模式
繁依Fanyi2 小时前
828华为云征文|华为Flexus云服务器搭建OnlyOffice私有化在线办公套件
服务器·开发语言·前端·python·算法·华为·华为云