Boost C++ 库

...世界上最受推崇和设计最精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ 编码标准

PrevUpHomeNext

函数模板 make_unique_definit

boost::movelib::make_unique_definit

概要

// In header: <boost/move/make_unique.hpp>


template<typename T> unique_ptr< T > make_unique_definit();

描述

备注: 除非 T 不是数组,否则此函数不应参与重载解析。

返回值unique_ptr<T>(new T) (默认初始化)


PrevUpHomeNext