C++ Thread-Safe Map(C++ 线程安全映射)
问题描述
有谁知道我在哪里可以找到包装 std::map
并使其线程安全的实现?当我说线程安全时,我的意思是它只提供对地图的串行访问,一次一个线程.最佳情况下,此映射应仅使用标准库和/或 boost 结构.
Does anyone know where I can find an implimentation that wraps a std::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 the standard-library and / or boost constructs.
推荐答案
不符合您指定的条件,但您可以查看 待定 容器.所谓的 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++ 线程安全映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 线程安全映射
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01