C++ Memory 库 - allocate_shared
描述
它使用 alloc 为 T 类型的对象分配内存并构造它,并将 args 传递给它的构造函数。 该函数返回一个 shared_ptr
声明
以下是 std::allocate_shared 的声明。
template <class T, class Alloc, class... Args> shared_ptr<T> allocate_shared (const Alloc& alloc, Args&&... args);
C++11
template <class T, class Alloc, class... Args> shared_ptr<T> allocate_shared (const Alloc& alloc, Args&&... args);
参数
args − 它是一个分配器对象。
alloc − 它是零个或多个类型的列表。
返回值
它返回一个 shared_ptr 对象。
异常
noexcep − 它不会抛出任何异常。
示例
在下面的例子中解释了 std::allocate_shared。
#include <iostream> #include <memory> int main () { std::allocator<int> alloc; std::default_delete<int> del; std::shared_ptr<int> foo = std::allocate_shared<int> (alloc,100); auto bar = std::allocate_shared<int> (alloc,200); auto baz = std::allocate_shared<std::pair<int,int>> (alloc,300,400); std::cout << "*foo: " << *foo << '\n'; std::cout << "*bar: " << *bar << '\n'; std::cout << "*baz: " << baz->first << ' ' << baz->second << '\n'; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
*foo: 100 *bar: 200 *baz: 300 400