问题标签 [concurrent-vector]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++11 - 如何从 C++ 中的 concurrent_vector (PPL) 中弹出第一个元素?
我正在开发一个程序,我需要从 concurrent_vector 中删除第一个元素。我怎么做?
我曾想过将 concurrent_queue 与 try_pop 一起使用,但我需要一些仅由 concurrent_vector 提供的并发安全函数(如元素访问)。
tbb - 对 tbb::internal::concurrent_vector_base 的未定义引用
我正在尝试了解 tbb::concurrent_vector 的工作原理。我正在使用 ubuntu 20.04 LTS。我已经通过 ubuntu 包安装了它。
当我尝试编译这个简单的 C++ 程序时
我收到此错误:
我也尝试过以这种方式声明它但失败了:
请告诉我我怎么会遇到这个错误。