使用多线程向同一个STL容器尾部并行插入新元素

使用多线程向同一个STL容器尾部并行插入新元素,在不进行同步管理的情况下,会出现未定义的行为。这里使用std::lock_guard进行同步管理

举例:

#include "boost/asio/thread_pool.hpp"
#include "boost/thread.hpp"
#include "boost/asio.hpp"
#include <thread>
#include <list>
#include <iostream>
#include <mutex>

void test() {
    int num = std::thread::hardware_concurrency();

    std::cout << num << std::endl;

    boost::asio::thread_pool pool(num);
    std::list<int> l;
    std::mutex m;
    for(int i = 0; i < 20; i++) {
        boost::asio::post(pool, [&l, i, &m] () {
            std::lock_guard<std::mutex> lock(m);
            l.emplace_back(i);
        });        
    }
    pool.join();
    std::cout << l.size() << std::endl;
    for(auto x : l) {
        std::cout << x << " ";
    }
    std::cout << std::endl;
}

int main() {
    for(int i = 0; i < 10; i++) {
        test();
        std::cout << i << std::endl << std::endl;
    }
    return 0;
}

其中,在创建std::lock_guard实例之后,加锁处理,在超出std::lock_guard实例作用域范围之后,自动解锁处理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值