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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1503.cpp
  3. // 单个函数中的异常
  4. //=====================================
  5. #include<fstream>
  6. #include<iostream>
  7. using namespace std;
  8. //-------------------------------------
  9. int main(int argc, char** argv){
  10.   ifstream in(argv[1]);
  11.   try{
  12.     if(!in) throw string(argv[1]);
  13.   }catch(string s){
  14.     cout<<s+" File Opening Error.n";
  15.     return 1;
  16.   }
  17.   for(string s; getline(in, s); cout<<s<<endl );
  18. }//====================================
  19.