gpt4 book ai didi

c++ - 在抛出 'std::length_error' 实例后调用的 cout 结果终止

转载 作者:行者123 更新时间:2023-11-30 03:53:02 24 4
gpt4 key购买 nike

当我运行我的程序时,它因以下错误而崩溃:

terminate called after throwing an instance of 'std::length_error' what(): basic_string::_S_create Aborted (core dumped)

我用下面的代码得到它:

#include <iostream>
#include <string>
using namespace std;

class Cargo
{
string nm;
public:
Cargo(const string& name): nm(name)
{

}
Cargo& operator=(const Cargo& )
{
cout<<"inside Cargo::operator=()"<<endl;
return *this;
}

friend ostream& operator<<(ostream& os, const Cargo& ca)
{
return os<<"Cargo name: "<<ca.nm;
}
};

class Truck
{
Cargo b;
string name;
public:
Truck(const string& nm):b("Cargo" + name)
{
name = nm;
}

void print()
{
cout << "name: " << name << endl;
cout << b << endl;
}
};

int main()
{
Truck a("Truck a"), b("Truck b");
a = b;
a.print();
b.print();
}///~:

最佳答案

在您的 Truck 构造函数中:

Truck(const string& nm):b("Cargo" + name)
{
name = nm;
}

您正在将 Truck 类的 name 属性作为参数发送给 b,该属性未初始化。我猜您想改为传递 nm 参数:

Truck(const string& nm):b("Cargo" + nm)
{
name = nm;
}

关于c++ - 在抛出 'std::length_error' 实例后调用的 cout 结果终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30325272/

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