C++ 笔记 | 第7课 异常处理
C++ 中的异常控制结构的功能是,当函数出现异常,函数的执行被终止,使控制权从函数返回,返回点是调用函数所指定的一个地点,而不是调用发生的地点。
C++ |
---|
| // 抛出异常:
throw 表达式;
// 捕获异常:
try {函数调用}
catch (声明) 语句
|
被调用函数中使用 throw
,当满足条件由 throw
抛出异常,而由 try
捕捉其后面 { }
中函数调用出现的异常,throw
的表达式对应 catch
的声明。一个 try
块后可以有多个 catch
分别处理不同的 throw
异常
若程序中有多处要抛出各种不同的异常,应该用不同的 (表达式) 操作数类型来相互区别,操作数的值不能用来区别不同的异常。
C++ |
---|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 | #include <stdlib.h>
#include <iostream>
using namespace std;
double Div(double a, double b) {if (b == 0.0) throw 1.0E-308;
return a / b;
}
int Div(int a, int b) {if (b == 0) throw 0;
return a / b;
}
int main() {
try {cout << "5.2/2.0=" << Div(5.2, 2.0) << endl;
cout << "5/2=" << Div(5, 2) << endl;
cout << "5.2/0.0=" << Div(5.2, 0.0) << endl;
cout << "5.2/4.0=" << Div(5.2, 4.0) << endl;
cout << "5/0=" << Div(5, 0) << endl;
cout << "5/4=" << Div(5, 4) << endl;
} catch (double d) {cout << "Exception, float overflow, why->" << d << endl;} catch (int i) {cout << "Exception, integer overflow, why->" << i << endl;}
cout << "All done!" << endl;
system("pause");
}
// 结果
5.2/2.0=2.6
5/2=2
5.2/0.0=Exception, float overflow, why->1e-308
All done!
请按任意键继续. . .
// 可以发现到第三行发生错误之后, try 块中第三行后面的都不再执行了
|