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

.net编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "SavingsAccount.h"
  3. SavingsAccount::SavingsAccount(String * holder)
  4. :BankAccount(holder)
  5. {
  6. }
  7. SavingsAccount::~SavingsAccount()
  8. {
  9. }
  10. void SavingsAccount::ApplyInterest()
  11. {
  12.     Credit(balance * interestRate);
  13. }
  14. bool SavingsAccount::CanDebit(double amount)
  15. {
  16.     if (amount <= balance / 10)
  17.     {
  18.         return true;
  19.     }
  20.     else
  21.     {
  22.         return false;
  23.     }
  24. }