我不知道为什么这行不通。当我运行它时,我的对象 c1 和客户上出现各种未声明的标识符错误。如果我做一个 Customer* c1 = new Customer(); 我仍然遇到同样的错误,它不会让我设置客户 ID。它可能很愚蠢,任何输入都会很棒。
void checkout(){
srand(time(NULL));
int random = rand() % 3 + 1;
Customer c1;
c1.setcustomerID("0");
}
class Customer{
public:
string customerID;
string list;
public:
Customer(){}
~Customer(){}
string getcustomerID(){
return customerID;
}
string getList(){
return list;
}
void setcustomerID(string x){
customerID = x;
}
void setList(int x){
if(x==1)
list = "bread";
if(x==2)
list = "eggs";
if(x==3)
list = "cheese";
}
};