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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <iostream>
#include <string.h>
using namespace std;
//标识错误的类型
void wrong ()
{
};
int intdiv(int a, int b)
{
try
{
if (b==0)
{
throw 10;//可以是任何对象 ,也可以throw一个函数wrong();
}
int c = a / b;
return c;
}
catch (int data )//类型名,catch的参数捕获的是throw的东西
{
cout << "除法异常已经处理";
return -1;
}
}
int intdivA(int a, int b)
{
return a / b;
}
void main()
{
int x, y;
cin >> x >> y;
try
{
if (y==0)
{
throw "被除数为0";
}
else if (x==0)
{
throw "除数为0";
}
}
catch (const char * s)//catch 捕获的是throw的东西,throw字符串的时候,捕获也要捕获字符串进行相应处理
{
if (strcmp(s,"被除数为0")==0)
{
cout << "被除数为0异常,请重新输入";
cin >> x >> y;
}
else if (strcmp(s, "除数为0") == 0)
{
cout << "除数为0异常,请重新输入";
cin >> x >> y;
}
}
std::cout << intdiv(x, y);
cin.get();
cin.get();
cin.get();
}
坚持原创技术分享,您的支持将鼓励我继续创作!