C ++线程安全地图 [英] C++ Thread-Safe Map

查看:211
本文介绍了C ++线程安全地图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有人知道我在哪里可以找到一个包装一个STL地图并使其线程安全的实现?当我说线程安全我的意思是它提供只有串行访问地图,一次一个线程。最佳地,此地图应只使用STL和或boost构造。

Does anyone know where I can find an implimentation that wraps an STL map and makes it thread safe? When I say thread safe I mean that it offers only serial access to the map, one thread at a time. Optimally, this map should use only STL and or boost constructs.

推荐答案

不符合您指定的条件,可以查看 TBB 容器。有一种叫做 concurrent_hash_map 的方法,它允许多个线程同时访问映射中的数据。有一些细节,但一切都很好地记录,可以给你一个并发容器的想法。根据你的需要,这可能是完全不合适的...

Does not meet the criteria that you have specified, but you could have a look at the TBB containers. There is so called concurrent_hash_map which allows multiple threads to access concurrently the data in the map. There are some details, but everything is nicely documented and can give you an idea of the "concurrent container". Depending on your needs this might be totally inappropriate...

这篇关于C ++线程安全地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆