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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1510.cpp
  3. // 构造函数中抛掷异常
  4. //=====================================
  5. #include"date.h"
  6. #include<iostream>
  7. using namespace std;
  8. //-------------------------------------
  9. int main(){
  10.   try{
  11.     Date c("abc");
  12.     Date d(2003,12,6);
  13.     Date e(2002);
  14.     Date f(2002,12);
  15.     Date g;
  16.     cout<<c<<d<<e<<f<<g;
  17.   }catch(out_of_range&){
  18.     cout<<"BecauseOfCreateDateObjectErrorn";
  19.   }
  20. }//====================================
  21.