我只是在编写小 OOP 应用程序,并在通过设置器设置类的私有字符串变量时运行(而不是编译)应用程序时崩溃,这是头文件:
class Car
{
private:
int year;
std::string brand;
std::string model;
int price;
std::string currency;
public:
int setYear(int x){this->year = x;}
std::string setBrand(std::string x){this->brand = x;}
std::string setModel(std::string x){this->model = x;}
int setPrice(int x){this->price = x;};
std::string setCurrency(std::string x){this->currency = x;}
};
这是主要的: n - 对象数 temp - 用于传递整数的临时变量 temp1 - 用于传递字符串的临时变量
ifstream fd("input.in");
int n;
fd >> n;
int temp;
string temp1;
Car A[n];
for(int i = 0; i < 3; i++)
{
fd >> temp;
A[i].setYear(temp);
fd >> temp1;
A[i].setBrand(temp1); //Crashes Here
fd >> temp1;
A[i].setModel(temp1);
fd >> temp;
A[i].setPrice(temp);
fd >> temp1;
A[i].setCurrency(temp1);
}
经过少量测试后,我发现它崩溃了,然后代码尝试设置“品牌”变量。有什么问题?