我尝试了解其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);
我们使用了指针作为参数。有什么区别吗?
对我来说还不清楚的是,以这种方式声明的指针与以“正常”方式声明的指针有何不同。
new int(3)
返回指向新指针的指针int
,就像pd
指向新指针的指针一样double
。