SavingsAccount.h
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:0k
源码类别:

.net编程

开发平台:

Visual C++

  1. #include "BankAccount.h"
  2. __gc class SavingsAccount : public BankAccount
  3. {
  4. public:
  5.     SavingsAccount(String * holder);
  6.     ~SavingsAccount();
  7.     void ApplyInterest();
  8.     bool CanDebit(double amount);   // Obliged to override CanDebit
  9. private:
  10.     static double interestRate = 0.05;    // 5% interest rate for all accounts
  11. };