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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1211.cpp
  3. // Shared BaseClass Scheme
  4. //=====================================
  5. #include<iostream>
  6. #include<list>
  7. using namespace std;
  8. #include"savings_bro.h"
  9. #include"checking_bro.h"
  10. #include"account.h"
  11. //-------------------------------------
  12. int main(){
  13.   Savings s1("3277",3000), s2("3279", 5000);
  14.   Checking c1("888"), c2("398", 10000);
  15.   s1.deposit(100);
  16.   c1.deposit(2000);
  17.   s2.withdrawal(2500);
  18.   c2.withdrawal(1555.5);
  19.   list<Account*> a;
  20.   a.push_back(&s1);
  21.   a.push_back(&s2);
  22.   a.push_back(&c1);
  23.   a.push_back(&c2);
  24.   cout<<"There are "<<a.size()<<" accounts:n";
  25.   for(list<Account*>::iterator it=a.begin(); it!=a.end(); ++it)
  26.     (*it)->display();
  27. }//====================================
  28.