线程的乱序执行,可能会得到意想不到的结果

#include <thread>
#include <iostream>
#include <vector>
#include <mutex>
using namespace std;
struct Counter
{
    mutex mutex_;
    int value;
    Counter() :value(0)
    {
    }
    void increment()
    {
        ++value;
    }
    void decrement()
    {
        mutex_.lock();
        --value;
        mutex_.unlock();
    }
};
int main()
{
    Counter counter;
    vector<thread> threads;
    for (int i = 0; i < 5;i++)//在使用多线程的程序中操作共享数据的时候一定要小心,由于线程的乱序执行,可能会得到意想不到的结果
    {
        threads.push_back(thread([&]()
        {
            for (int i = 0; i < 10000;++i)
            {
                counter.increment();
            }
        }));
    }
    for (auto& thread:threads)
    {
        thread.join();
    }
    cout << counter.value << endl;

    system("pause");
    return 0;
}

#include <thread>
#include <iostream>
#include <vector>
#include <mutex>
using namespace std;
struct Counter
{
    mutex mutex_;
    int value;
    Counter() :value(0)
    {
    }
    void increment()
    {
        mutex_.lock();
        ++value;
        mutex_.unlock();
    }
    void decrement()//由于创建线程是使用lambda表达式,并使用引用的方式访问counter这个变量,当没有使用lock来保护的时候(情况【1】),执行的结果可能不像预期的5000(程序的意思是每个线程使counter中的value自加1000次,5个线程运行结束的时候应该是5000),当没有使用锁的时候自加的操作可能被其他线程打断,因此结果可能会小于5000。
    {
        mutex_.lock();
        --value;
        mutex_.unlock();
    }
};
int main()
{
    Counter counter;
    vector<thread> threads;
    for (int i = 0; i < 5;i++)//在使用多线程的程序中操作共享数据的时候一定要小心,由于线程的乱序执行,可能会得到意想不到的结果
    {
        threads.push_back(thread([&]()
        {
            for (int i = 0; i < 10000;++i)
            {
                counter.increment();
            }
        }));
    }
    for (auto& thread:threads)
    {
        thread.join();
    }
    cout << counter.value << endl;

    system("pause");
    return 0;
}

#include <thread>
#include <iostream>
#include <vector>
#include <mutex>
using namespace std;
struct Counter
{
    mutex mutex_;
    int value;
    Counter() :value(0)
    {
    }
    void increment()
    {
        mutex_.lock();
        ++value;
        mutex_.unlock();
    }
    void decrement()
    {
        mutex_.lock();
        --value;
        mutex_.unlock();
    }
};
int main()
{
    Counter counter;
    vector<thread> threads;
    for (int i = 0; i < 5;i++)//在使用多线程的程序中操作共享数据的时候一定要小心,由于线程的乱序执行,可能会得到意想不到的结果
    {
        threads.push_back(thread([&]()
        {
            for (int i = 0; i < 10000;++i)
            {
                counter.increment();
            }
        }));
        threads[i].join();
    }
    cout << counter.value << endl;

    system("pause");
    return 0;
}





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值