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

.net编程

开发平台:

Visual C++

  1. // This is the main project file for VC++ application project 
  2. // generated using an Application Wizard.
  3. #include "stdafx.h"
  4. #include "Bank.h"
  5. #include "Account.h"
  6. #using <mscorlib.dll>
  7. using namespace System;
  8. // This is the entry point for this application
  9. #ifdef _UNICODE
  10. int wmain(void)
  11. #else
  12. int main(void)
  13. #endif
  14. {
  15.     Console::WriteLine(S"Bank example");
  16.     // Create a bank
  17.     Bank* theBank = new Bank();
  18.     // Create some accounts
  19.     Account* accountOne = new Account(123456, 100.0, 0.0);
  20.     Account* accountTwo = new Account(234567, 1000.0, 100.0);
  21.     Account* accountThree = new Account(345678, 10000.0, 1000.0);
  22.     // Add them to the Bank
  23.     theBank->Add(accountOne);
  24.     theBank->Add(accountTwo);
  25.     theBank->Add(accountThree);
  26.     // Use the indexed property to access an account
  27.     Account* pa = theBank->Acct[234567];
  28.     Console::WriteLine("Balance is {0}", __box(pa->get_Balance()));
  29.     return 0;
  30. }