我是c++ 11中移动语义的新手,我不太清楚如何在构造函数或函数中处理unique_ptr
参数。考虑这个类引用自己:
#include <memory>
class Base
{
public:
typedef unique_ptr<Base> UPtr;
Base(){}
Base(Base::UPtr n):next(std::move(n)){}
virtual ~Base(){}
void setNext(Base::UPtr n)
{
next = std::move(n);
}
protected :
Base::UPtr next;
};
这是我应该如何写函数接受unique_ptr
参数?
我是否需要在调用代码中使用std::move
?
Base::UPtr b1;
Base::UPtr b2(new Base());
b1->setNext(b2); //should I write b1->setNext(std::move(b2)); instead?