account.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    account.h    **
  3. //*********************
  4. #ifndef ACCOUNT
  5. #define ACCOUNT
  6. class Account{
  7. public:
  8.   Account(unsigned accNo, float balan=0.0);
  9.   unsigned AccountNo();
  10.   float AcntBalan();
  11.   static Account*& First();
  12.   Account* Next();
  13.   static int NoAccounts();
  14.   void Display();
  15.   void Deposit(float amount);
  16.   virtual void Withdrawal(float amount);
  17. protected:
  18.   static Account* pFirst;
  19.   Account* pNext;
  20.   static int count;
  21.   unsigned acntNumber;
  22.   float balance;
  23. };
  24. #endif