AcountList.h
上传用户:szmwdq
上传日期:2022-07-16
资源大小:528k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // AcountList.h: interface for the AcountList class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ACOUNTLIST_H__FC4A6836_FC15_4A0B_9874_8FC9F0189D0B__INCLUDED_)
  5. #define AFX_ACOUNTLIST_H__FC4A6836_FC15_4A0B_9874_8FC9F0189D0B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "BankCard.h"
  10. class Node
  11. {
  12. public:
  13. BankCard* bankt;
  14. Node* next;
  15. Node(BankCard* pa){bankt=pa;next=NULL;}
  16. };
  17. class AcountList  
  18. {
  19. int size;  Node* first;
  20. public:
  21. AcountList():size(0),first(NULL){} //构造
  22. void Add(BankCard& a);//增加账户
  23. void withdrawal(string ,double ); //取款
  24. void deposit(string ,double ); //存款
  25. BankCard* find(string CardNum)const; //查找
  26. void display()const; //显示
  27. ~AcountList(); //析构
  28. };
  29. #endif // !defined(AFX_ACOUNTLIST_H__FC4A6836_FC15_4A0B_9874_8FC9F0189D0B__INCLUDED_)