gpt4 book ai didi

c++ - 在boost中使用make_shared和allocate_shared?

转载 作者:行者123 更新时间:2023-11-30 01:15:11 29 4
gpt4 key购买 nike

我无法理解有关如何使用 make_sharedallocate_shared 初始化共享数组和指针的 boost 文档:

shared_ptr<int> p_int(new int); // OK
shared_ptr<int> p_int2 = make_shared<int>(); // OK
shared_ptr<int> p_int3 = allocate_shared(int); // ??


shared_array<int> sh_arr(new int[30]); // OK
shared_array<int> sh_arr2 = make_shared<int[]>(30); // ??
shared_array<int> sh_arr3 = allocate_shared<int[]>(30); // ??

我正在尝试学习正确的语法来初始化上面注释为 //?? 的变量

最佳答案

allocate_shared 的使用方式与 make_shared 相同,只是您将分配器作为第一个参数传递。

boost::shared_ptr<int> p_int(new int);
boost::shared_ptr<int> p_int2 = boost::make_shared<int>();

MyAllocator<int> alloc;
boost::shared_ptr<int> p_int3 = boost::allocate_shared<int>(alloc);

boost::shared_array 没有make 函数,所以制作一个的唯一方法是手动分配内存:

boost::shared_array<int> sh_arr(new int[30]);

boost::make_shared 等支持数组类型 - 未知大小或固定大小之一 - 在这两种情况下都会返回 boost::shared_ptr :

boost::shared_ptr<int[]> sh_arr2 = boost::make_shared<int[]>(30);
boost::shared_ptr<int[30]> sh_arr3 = boost::make_shared<int[30]>();

请注意 std::shared_ptr 目前支持数组。

关于c++ - 在boost中使用make_shared和allocate_shared?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28929483/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com