#include<iostream>
#include<fstream>
#include<string>
#include<cstring>
using namespace std;
void login(const char*, double, double&);
void information(const char*, double&);
void pay(const char*, double, double);
class VIP {
public:
double phonenumber; //手机号
string password; //密码
double money; //余额
double score; //积分
bool key; //判断是否是会员,1为会员
VIP() { //初始化
phonenumber = 0;
password = "noName";
money = 0;
score = 0;
key = 0;
}
VIP(double a, string b, double c, double d, double e) {
phonenumber = a;
password = b;
money = c;
score = d;
key = e;
}
VIP(const VIP& p) {
phonenumber = p.phonenumber;
password = p.password;
money = p.money;
score = p.score;
key = p.key;
【C++】出现引发了未经处理的异常:读取访问权限冲突。**_Pnext** 是 0xFFFFFFFFFFFFFFFF。该问题如何解决。大佬救命
最新推荐文章于 2024-09-11 10:19:07 发布

最低0.47元/天 解锁文章
1136

被折叠的 条评论
为什么被折叠?



