本文介绍了在std :: map threads上查找和读取操作吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

std :: map a 我们可以 a.find(...) - & code>在同一时间多个线程?

Having std::map a can we do a.find(...)->second in multiple threads at the same time on it?

推荐答案

是的。只要没有你的线程写

Yes. As long as none of your threads do a write

,即。在内存中构造数据结构

i.e. Construct the data structure in memory

使用尽可能多的线程根据需要查找/读取。

Use as many threads to find/read as you require.

叶需要改变互斥体。

这篇关于在std :: map threads上查找和读取操作吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 20:14