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

.net编程

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include "account.h"
  3. #using <mscorlib.dll>
  4. using namespace System;
  5. Account::Account(long num, double bal, double lim)
  6. {
  7.     Console::WriteLine("Account: constructor");
  8.     
  9.     // Basic sanity checks
  10.     if (num < 0 || lim < 0)
  11.         throw new ArgumentException("Bad arguments to constructor");
  12.     // Initialize values
  13.     accNumber = num;
  14.     balance = bal;
  15.     limit = lim;
  16. }