gpt4 book ai didi

c++ - 如何知道 std::list 是否已被修改

转载 作者:行者123 更新时间:2023-11-27 23:23:11 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Create std::list of value instead of std::list of pointers in recursive function

我有这门课:

class C
{
public:

C* parent;
std::list<C> children;
};

我可以这样使用这个类,例如:

C root;
C child;

root.children.push_back(child); // or other method of std::list (es: push_front, insert, ...)

// Here child.parent is root
// How can I set the parent of child?

我想在不丢失 std::list 功能的情况下在我的类内部完成这项工作,这可能吗?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com