在 c++11 中是否有 shared_memory_object 的替代品
is there a replacement of shared_memory_object in c++11
我正在尝试将 c++ 代码转换为 c++11
样式,我想停止使用一些与 boost 相关的库。我知道 c++11
从 boost 中借鉴了很多概念。 c++11
中是否有shared_memory_object
的替换?
没有。标准中没有 "Shared memory" 的概念。因此没有使用它的工具。
我正在尝试将 c++ 代码转换为 c++11
样式,我想停止使用一些与 boost 相关的库。我知道 c++11
从 boost 中借鉴了很多概念。 c++11
中是否有shared_memory_object
的替换?
没有。标准中没有 "Shared memory" 的概念。因此没有使用它的工具。