2

我尝试做以下事情:

使用 boost::interprocess 库在共享内存中创建一个“大”数组(1 000 000 + 对象)

我的代码包含以下内容:

managed_shared_memory testarray(create_only, "Test", 45000000);

typedef std::pair<SingleField, uint32_t> TestType;
TestType * test = testarray.construct<TestType>("TestArray")[45000000];

我的问题是:如何确定这个 boost 函数的返回类型是什么?

如果我对以下内容执行相同的操作: SingleField 而不是 "::pair 它似乎不起作用,但我不需要第二个容器,我只需要一个但有一个它不起作用!

eclipse 的输出对我来说太神秘了。自从我使用 boost 工作以来,由于这些问题我已经停止了几次,有没有一种简单的方法可以确定函数会返回什么“类型”?(我来自 Java,所以我习惯于有一些“简单”定义,上面写着 Object x )如果我能弄清楚一个特定函数返回的类型,我会很高兴,我为自己编写的所有函数都是很简单,但是有了这个库,我似乎遇到了问题。

第二个问题:为什么这些示例总是带有“类型”对,它是库的前提条件吗?

-> 我尝试过使用 #include ,Eclipse 告诉我它的 std::pair 问题是为什么它是 T* ?这是起始段地址吗?

感谢您的时间和答案。

日食输出:

Multiple markers at this line
- unused variable test
- cannot convert const 
 boost::interprocess::detail::named_proxy<boost::interprocess::segment_manager<char, 
 boost::interprocess::rbtree_best_fit<boost::interprocess::mutex_family, 
 boost::interprocess::offset_ptr<void>, 0ul>, boost::interprocess::iset_index>, Field, false> to 
 SharedMemoryInitializer::Create()::TestType* in initialization

我已多次阅读 boost Library 手册,也许我查看了错误的站点或页面,如果您提供我错过的信息,我会很高兴。

http://www.boost.org/doc/libs/1_42_0/doc/html/interprocess/quick_guide.html#interprocess.quick_guide.qg_interprocess_container

4

1 回答 1

0

从我的角度来看,您的代码有两个主要问题:

  • 您似乎分配了 45000000 个类型的对象,TestType这可能不是您想要的(除非TestType每个实例只需要一个字节):

    TestType * test = testarray.construct<TestType>("TestArray")[45000000];

  • 根据文档(*),您必须为构造函数调用提供括号(您使用的是第二个版本): TestType * test = testarray.construct<TestType>("TestArray")[45000000]();

    我假设它TestType有一个无参数的构造函数。

(*) http://www.boost.org/doc/libs/1_46_1/doc/html/interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_memory_segment_features.allocation_types

于 2012-05-14T13:26:58.130 回答