传染媒介传染媒介与习惯类的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了传染媒介传染媒介与习惯类的相关的知识,希望对你有一定的参考价值。

我正在尝试自学C ++并找到一个围绕苏打水库存的示例问题。我有两个类1)库存和2)苏打水。苏打包含其初始量(int),名称(字符串),id(字符串)和数量(int)。库存包含向量的向量(苏打类型)。

库存的类声明:

private:
std::vector< std::vector<Soda> > softDrinks;
public:
Inventory();
void buildInventoryGood();
void processTransactionsGood();
std::string displayReport();

苏打水的舱位声明:

private:
std::string name;
std::string id;
int quantity;
int startingAmount;
int numberOfTransactions;

public:
Soda();
Soda(std::string sodaName, std::string sodaID, int initialAmount);
int addSoda(std::string id, int amount);
int withdrawSoda(std::string id, int toWithdraw);
std::string Report();
std::string getName();
std::string getID();

我可以运行buildInventoryGood(),它可以很好地构建一切。 (如果我要报告,下面是结果)

Name    ID      InitialAmount   FinalAmount
coke    123     100             300
pepsi   321     200             200
Shasta  987     300             300

我的问题是processTransactionGood()。我在那里留下了一些cout调试语句,以帮助我弄清楚发生了什么。

void Inventory::processTransactionsGood()
{
vector<Soda> vecSoda;
string textline;
string name;
string id;
int quantity;
ifstream infile("data6trans.txt");

while (getline(infile, textline))
{
    string space_string;
    std::istringstream text_stream(textline);
    text_stream >> id;
    getline(text_stream, space_string, ' '); // Read characters after number until space.
    text_stream >> quantity;

    for (auto drink : softDrinks) {
        auto it = find_if(drink.begin(), drink.end(), [id](Soda obj) {return obj.getID() == id; });
        if (it == drink.end()) {}
        else {
            auto index = distance(drink.begin(), it);
            cout << id << "  " << quantity << " " << index << "a" << endl;
            drink[index].withdrawSoda(id, quantity);
            cout << drink[index].Report() << endl;
        }
    }
}
}

最后一个cout语句告诉我处理了一个给定的苏打水(在这个例子中减去一个值)

Name    Id      starting        final
Shasta  987     300             299

Shasta的最终结果应该是299.但是当我运行displayReport()时,我得到了一个我没想到的结果:

string Inventory::displayReport() 
{
string report = "Name	ID	InitialAmount	FinalAmount
";
for (auto item : softDrinks) {
    for (auto drink : item) {
        report += drink.Report();
    }
}
return report;
}

我明白了:

Name    ID      InitialAmount   FinalAmount
coke    123     100             300
pepsi   321     200             200
Shasta  987     300             300

所有这一切:我不确定我是否正在抓住矢量矢量的实践而我不会按照应该的方式设置它 编辑:^我不知道正确的方法是什么,我正在寻找指针或参考。

答案
for (auto drink : softDrinks)

使drink成为softDrink元素的副本。这就是修改后的元素没有存储到softDrinks的原因。

请用

for (auto &drink : softDrinks)

而不是那个手头的参考。

以上是关于传染媒介传染媒介与习惯类的的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 字符串操作传染媒介

C#容器 - 传染媒介,。列表,队列,堆栈等

《传染病护理学》 复习题及参考答案

《传染病护理学》 复习题及参考答案

2022年《传染病护理学》 复习题及参考答案

matlab练习程序(传染病模型)