this->name = name; this->intro = intro; this->price = price; this->rest = rest; this->store = store; this->reserved = 0;
时间: 2024-05-30 19:08:48 浏览: 130
这段代码看起来像是一个类的构造函数,用于初始化类的成员变量。其中,name、intro、price、rest、store、reserved都是该类的属性。
this->name = name; 表示将传入的参数name赋值给类的成员变量name。
this->intro = intro; 同理,将传入的参数intro赋值给类的成员变量intro。
this->price = price; 同理,将传入的参数price赋值给类的成员变量price。
this->rest = rest; 同理,将传入的参数rest赋值给类的成员变量rest。
this->store = store; 同理,将传入的参数store赋值给类的成员变量store。
this->reserved = 0; 表示将类的成员变量reserved初始化为0。
阅读全文