gpt4 book ai didi

c++ - 无法访问集合中的集合 | C++

转载 作者:行者123 更新时间:2023-11-28 07:32:38 24 4
gpt4 key购买 nike

我有一个名为“Store”的类,它有 2 个“set”类型的数据字段:“customers”(类型为 std::set)和“albums”(类型为 std::set<Album>)。

std::set<Album> albums;
std::set<Customer> customers;

现在,当我尝试将数据保存到其中一个集合时 - 一切正常,但在“客户”类型中我有第三个名为订单的集合(类型为 std::set ),当我尝试保存时数据到它(在我离开保存数据的功能之后)它消失了!

下面是我如何将数据保存到它:

Customer foundCustomer = *Customer::findID(customers ,id);

Order newOrder = Order();
newOrder.ordNum = ordNum;
newOrder.isPaid = false;

foundCustomer.orders.insert(newOrder);

如果您需要我发布更多代码,请告诉我。

帮助将不胜感激!

最佳答案

Customer foundCustomer = *Customer::findID(customers ,id);

这一行复制了客户。如果要修改他设置的原始客户int,则需要使用引用:

Customer& foundCustomer = *Customer::findID(customers ,id);

并确保 *Customer::findID(...) 也产生引用。

关于c++ - 无法访问集合中的集合 | C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17366288/

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