2

我正在编写一个树状容器,其中每个“节点”都有一个带有分支/子树的列表,目前我的头看起来像:

class _tree {
public:
    typedef _tree* tree_ptr;
    typedef std::list<_tree> _subTreeTy;

    explicit _tree(const _ValTy& v, const _NameTy& n); //create a new tree
    _tree(const _ValTy& v, const _NameTy& n, tree_ptr _root); 
         //create a new tree and add it as branch to "_root".

    ~_tree();

    void add_branch(const _tree& branch); //add by copy
    void add_branch(_tree&& branch); //add by move
private:
    _subTreeTy subtrees;
    _ValTy value;
    _NameTy name;
};


_tree::_tree(const _ValTy& v, const _NameTy& n, tree_ptr _root)
    : root(_root),
    value(v),
    name(n)
{
    _root->add_branch(*this); //not rvalue(???)
}

现在第二个构造函数将在内部创建一个树_root- 但是这如何与调用一起工作(忽略私有违规):

_tree Base(0,"base");
_tree Branch(1, "branch", &Base);
Base.subtrees.begin()->value = 8;
std::cout << Branch.value;

我将如何做到这一点Branch*Base.subtrees.begin()引用同一个节点?或者我应该走另一条路。用于add_branch()创建分支/子树?

4

1 回答 1

3

移动语义是关于移动对象的内部,而不是对象(作为类型化的内存)本身。最好从值和不变量的角度来考虑它,因为即使考虑到移动,C++ 仍然具有值语义。这表示:

std::unique_ptr<int> first(new int);
// invariant: '*this is either null or pointing to an object'
// current value: first is pointing to some int
assert( first != nullptr );

// move construct from first
std::unique_ptr<int> second(std::move(first));

// first and second are separate objects!
assert( &first != &second );

// New values, invariants still in place
assert( first == nullptr );
assert( second != nullptr );

// this doesn't affect first since it's a separate object
second.reset(new int);

换句话说,虽然您可以*this通过执行std::move(*this)您想要的操作将表达式转换为右值,但现在无法实现,因为std::list<_tree>使用值语义并且_tree本身具有值语义。*Base.subtrees.begin()是与前者不同的对象,Branch并且由于对前者的修改不会影响后者。

如果这是您想要(或需要)的,则切换到引用语义,例如使用std::shared_ptr<_tree>and std::enable_shared_from_this(然后_root->add_branch(shared_from_this())在构造函数中使用)。不过我不推荐它,这可能会变得混乱。在我看来,价值语义是非常可取的。


使用值语义,使用您的树可能如下所示:

_tree Base(0, "base");
auto& Branch = Base.addBranch(1, "branch");

即,addBranch返回对新建节点的引用。在顶部撒上一些移动语义:

_tree Base(0, "base");
_tree Tree(1, "branch); // construct a node not connected to Base
auto& Branch = Base.addBranch(std::move(Tree));
// The node we used to construct the branch is a separate object
assert( &Tree != &Branch );

严格来说,如果_tree是可复制的移动语义不是必需的,但Base.addBranch(Tree);也可以。

于 2011-10-09T14:00:28.547 回答