关于声明unique_ptr的问题
来源:6-17 智能指针unique_ptr
奋斗的胖明同学
2020-07-27
问题1.auto i = unique_ptr<int>(new int(10));
与auto w = std::make_unique<int>(10);请问有什么区别?
问题2.在auto w = std::make_unique<int>(10);中= std::是什么意思,表示什么?
麻烦您了
写回答
1回答
-
问题1,你可以认为二者等价;问题2, std::是标准库的命名空间。
012020-07-27
相似问题
unique_ptr 的一些问题
回答 1
声音有问题
回答 2