make_unique和unique_ptr有什么区别?
来源:6-17 智能指针unique_ptr
mahsiaoko
2020-03-04
如题,我看老师您用了这两个来实现unique_ptr指针,在讲auto_ptr时候只用了auto_ptr一种方式
写回答
1回答
-
make_unique只是把参数转发给要创建对象的构造函数,再从new出来的原生指针构造std::unique_ptr; 在这里等效于unique_ptr new; auto_ptr好像没有这样的方法,你可以试试。
012020-04-09
相似问题