Boost C++ 库

“...世界上最受尊敬和设计最精湛的 C++ 库项目之一。” Herb SutterAndrei Alexandrescu, C++ 编码标准

PrevUpHomeNext

函数模板 make_unique_nothrow

boost::movelib::make_unique_nothrow

概要

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


template<typename T, class... Args> 
  unspecified make_unique_nothrow(Args && ...);

描述

注意:除非 T 是已知边界的数组,否则该函数不应参与重载解析。


PrevUpHomeNext