我似乎无法弄清楚这一点,它可能很简单。我有一个客户类,我正在尝试创建一个对象表单,但它不工作我得到一个未声明的标识符错误和一个语法错误;在标识符 c1 之前丢失。谢谢
class Customer{
string customerID;
string list;
public:
Customer(void);
~Customer(void);
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";
}
};
void checkout(){
srand(time(NULL));
int random = rand() % 3 + 1;
Customer c1;
c1.setcustomerID(0);