我无法弄清楚为什么这不起作用。当我运行它时,我在对象c1和客户上得到各种未声明的标识符错误。如果我做客户* c1 =新客户();我仍然得到相同的错误,它不会让我setcustomerID。它可能是愚蠢的,任何输入都会很棒。
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";
}
};
答案 0 :(得分:1)
你应该把:
class Customer{
在checkout()方法之前