请帮帮我。所需的变量没有重载。
类用户:(继承自 Account)
void User::resetAccount(){
!Account();
}
类账户(继承自 Money)
//Account.h
class Account{
private:
string fio;
long id; //id
int pin;
Money m;
public:
Account();
Account(string FIO, long Ident, int Pin, Money M);
Account operator!();
//Account.cpp
Account Account::operator!(){
this->m.setSum(0);
return *this;
}
Money 中的 setSum() 方法可以正常工作。谢谢你。
想你想要
所以或
如果
User
确实正确继承了Account
.