共用方式為


allocate_shared

建立shared_ptr 為使用特定的配置器,針對特定類型的配置和建構的物件。 傳回 shared_ptr

template<class Type, class Allocator, class... Types>
    shared_ptr<Type> allocate_shared(
        Allocator _Alloc, 
        Types&&... _Args
    );

參數

  • _Alloc
    用於的配置器建立物件。

  • _Args
    Visual Basic 的零個或多個引數。

屬性值/傳回值

傳回已配置物件的點的 shared_ptr

備註

函式會建立物件 shared_ptr<Type>,對 Type(_Args...) 的指標 (如配置和所建構的 _Alloc。

需求

標題: <memory>

命名空間: std

請參閱

參考

<memory>