我试图了解它是如何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);
我们使用指针作为参数。它有什么不同吗?
我还不清楚的是,以这种方式声明的指针与以“正常”方式声明的指针有何不同。