C++中的异常捕获与处理:Try、Throw、Catch关键字的理解和使用

来源:互联网 发布:防sql注入最佳 编辑:程序博客网 时间:2024/06/05 04:03

一、C++异常机制使用了三个新的关键字  (SEH(结构化异常处理))
try    ──标识可能出现的异常代码段
throw  ──抛出一个异常
catch  ──标识处理异常的代码段
二、抛出异常 throw
throw必须在 try代码块中.后边跟的值决定抛出异常的类型。
三、捕获异常 catch  
出现在try代码块后,后边跟的数据决定捕获的类型
catch(...) //表示捕获所有异常

提示:
 使用异常处理将带来更多的系统开销。因此慎用异常。

#include "stdafx.h"#include<iostream>#include<stdexcept>#include<fstream>#include<string>#include<vector>using namespace std;/**   也可以让readIntegerFile()抛出两种不同类型的异常。以下是实现   如果不能打开文件,则抛出invalid_argument类异常对象,如果无法读取整数,就抛出runtime_error类对象。   invalid_argument和runtime_error都是定义在<stdexcept>头文件中的类*/void readIntegerFile(const string& fileName, vector<int> &dest){ifstream istr;int temp;istr.open(fileName);if (istr.fail()){throw invalid_argument("Unable to open the file");}while (istr >> temp){dest.push_back(temp);}if (!istr.eof()) {//We did not reach the end-of-file//This means that some error occurred while reading the file//Throw an exception//文件结尾是非数字 则抛出throw runtime_error("Error reading the file.");}}int main(){vector<int> myInts;const string& fileName = "C:/Users/Administrator/Desktop/IntegerFile.txt";//main()函数可以用两个catch语句捕获invalid_argument和runtime_errortry {readIntegerFile(fileName, myInts);}catch (const invalid_argument& e) {cerr << e.what() << endl;return 1;}catch (const runtime_error& e) {cerr << e.what() << endl;return 1;}for (const auto&element : myInts) {cout << element << " ";}cout << endl;return 0;}

阅读全文
0 0
原创粉丝点击