account.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //*********************
- //** account.h **
- //*********************
- #ifndef ACCOUNT
- #define ACCOUNT
- class Account{
- public:
- Account(unsigned accNo, float balan=0.0);
- unsigned AccountNo();
- float AcntBalan();
- static Account*& First();
- Account* Next();
- static int NoAccounts();
- void Display();
- void Deposit(float amount);
- virtual void Withdrawal(float amount);
- protected:
- static Account* pFirst;
- Account* pNext;
- static int count;
- unsigned acntNumber;
- float balance;
- };
- #endif