我试图了解 std::unique_ptr
是如何工作的,为此我找到了 这个文档。作者从以下例子开始:
#include <utility> //declarations of unique_ptr
using std::unique_ptr;
// default construction
unique_ptr<int> up; //creates an empty object
// initialize with an argument
unique_ptr<int> uptr (new int(3));
double *pd= new double;
unique_ptr<double> uptr2 (pd);
// overloaded * and ->
*uptr2 = 23.5;
unique_ptr<std::string> ups (new std::string("hello"));
int len=ups->size();
让我困惑的是,在这条线上
unique_ptr<int> uptr (new int(3));
我们使用整数作为参数(在圆括号之间) ,这里
unique_ptr<double> uptr2 (pd);
我们使用了一个指针作为参数。这有什么区别吗?
我也不清楚的是,以这种方式声明的指针与以“正常”方式声明的指针如何不同。