C++ tbb::concurrent_hash_map怎么用

Posted 软件工程小施同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ tbb::concurrent_hash_map怎么用相关的知识,希望对你有一定的参考价值。

Intel TBB 提供高并发的容器类,Windows或者Linux线程能使用这些容器类或者和基于task编程相结合(TBB)。

concurrent_hash_map<Key,T,HashCompare>是一个hash表,允许并行访问,表是一个从Key到类型T的映射,类型HashCompare定义怎样hash一个Key和怎样比较2个Key。

concurrent_hash_map is a class template for an unordered associative container that holds key-value pairs with unique keys and supports concurrent insertion, lookup, and erasure.

文档

concurrent_hash_map — oneAPI Specification 1.0-rev-3 documentation

以上是关于C++ tbb::concurrent_hash_map怎么用的主要内容,如果未能解决你的问题,请参考以下文章

C++,__try 和 try/catch/finally

可移植地识别非标准 C++?

在 C++ 中复制 __PRETTY_FUNCTION__ 的行为

Cython 和重载的 c++ 构造函数

如何将C++头文件转换为delphi

C++两个头文件相互包含