boost-interprocess 库中的问题
std::pair<int*, std::size_t> p = managed_shm.find<int>("Integer");
有人可以给我这个 find 方法的定义吗?
std::pair<int*, std::size_t> p = managed_shm.find<int>("Integer");
can someone provide me with the definition of this find method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您按照 boost 标头中的代码进行操作,您会发现它,这是起点:
boost/interprocess/managed_shared_memory.hpp
中的class basic_management_shared_memory
(版本 1.4.5)这是我检查过的,你没有指定你的版本!)If you follow the code in the boost headers you'll find it, here is the starting point:
class basic_managed_shared_memory
inboost/interprocess/managed_shared_memory.hpp
(version 1.4.5 is what I checked, you've not specified your version!)