...世界上最受推崇和设计最精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu, C++ 编码标准
...世界上最受推崇和设计最精良的 C++ 库项目之一。
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) (默认初始化)
unique_ptr<T>(new T)