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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1210.cpp
  3. // Inheriting for Reducing Verbose Code
  4. //=====================================
  5. #include<iostream>
  6. #include<list>
  7. using namespace std;
  8. #include"savings_base.h"
  9. #include"checking_sub.h"
  10. //-------------------------------------
  11. int main(){
  12.   Savings s1("3277",3000), s2("3279", 5000);
  13.   Checking c1("888"), c2("398", 10000);
  14.   s1.deposit(100);
  15.   c1.deposit(2000);
  16.   s2.withdrawal(2500);
  17.   c2.withdrawal(1555.5);
  18.   list<Savings*> sList;
  19.   sList.push_back(&s1);
  20.   sList.push_back(&s2);
  21.   sList.push_back(&c1);
  22.   sList.push_back(&c2);
  23.   for(list<Savings*>::iterator it=sList.begin(); it!=sList.end(); ++it)
  24.     (*it)->display();
  25. }//====================================
  26.