#include <iostream>
using namespace std;
double fun(double a, double b)
{
if (b == 0)
throw b; // 抛出异常
return a / b;
}
int main()
{
int res;
try // try语句用来判断是否有异常
{
res = fun(2, 3);
cout << "The result of x/y is : " << res << endl;
res = fun(4, 0); // 出现异常
}
catch (double) // catch语句捕获异常,并进行处理 // catch的数据类型需要与throw出来的数据类型相匹配。
{
cout << "Error of dividing zero.!" << endl;
exit(1);
}
catch (...) // 捕获系统异常
{
cout << "系统异常!" << endl;
}
return 0;
}
C++:try catch throw的基本用法
最新推荐文章于 2023-11-15 14:33:50 发布