unique_ptr成员向量

时间:2015-01-28 20:34:14

标签: c++ c++11 unique-ptr

我有以下内容:

typedef std::vector<std::unique_ptr<Node>> NodeList;
class Node
{
 public:
    Node();
    Node(NodeType _type);
    virtual ~Node();

    NodeType getNodeType() const;
    Node const* getParentNode() const;
    // I want a member function to allow acces to the
    // childNodes vector
    bool hasChildNodes() const;

    void setParent(Node* node);
    void appendChild(std::unique_ptr<Node> node);
protected:
    NodeType _nodeType;
    Node* parentNode;
    NodeList childNodes;
};

我希望类的用户可以访问childNodes(读取或读取和写入)。 我怎样才能做到这一点?

修改

我试过了:     节点列表和放大器; getChildNodes();

我得到了:

/usr/include/c++/4.8.3/bits/stl_construct.h:75: error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&) [with _Tp = Node; _Dp = std::default_delete<Node>]'
 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
   ^

2 个答案:

答案 0 :(得分:3)

如果您被锁定在unique_ptr的向量中,并希望在类外修改它们,

NodeList& getChildNodes() {return childNodes;}
const NodeList& getChildNodes() const {return childNodes;}

你不能返回unique_ptr,因为这会将它移出向量,留下一个nullptr。

答案 1 :(得分:1)

你尝试的是正确的,但我猜你这样做了:

// This will not work and will try to copy the list
NodeList list = node.getChildNodes();

相反,这应该有效:

NodeList& list = node.getChildNodes();