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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // account.h
  3. //=====================================
  4. #ifndef HEADER_ACCOUNT
  5. #define HEADER_ACCOUNT
  6. //-------------------------------------
  7. #include<string>
  8. using std::string;
  9. //-------------------------------------
  10. class Account{
  11. protected:
  12.   string acntNumber;
  13.   double balance;
  14. public:
  15.   Account(string acntNo, double balan=0.0);
  16.   virtual void display()const;
  17.   double getBalan()const{ return balance; }
  18.   void deposit(double amount){ balance += amount; }
  19.   bool operator==(const Account& a){ return acntNumber==a.acntNumber; }
  20.   virtual void withdrawal(double amount){ return; }
  21. };//-----------------------------------
  22. #endif  // HEADER_ACCOUNT
  23.