c++ 异常捕获

c++ 异常捕获,第1张

#include 
using namespace std;

double fuc(double x, double y)                        //定义函数
{
    if (y == 0)
    {
        throw y;                                    //除数为0,抛出异常
    }
    return x / y;                                   
}

int main()
{
    double res;
    double x, y;
    cin >> x >> y;
    try                                            //定义异常
    { 
        res=fuc(x, y);
        cout << res << endl;
    }
    catch (double)                                    //捕获并处理异常
    {
        cerr << "error of dividing zero.\n";
        //exit(1);                                    //异常退出程序
    }
    system("pause");
    return 0;
}
 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1353864.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-14
下一篇 2022-06-14

发表评论

登录后才能评论

评论列表(0条)

保存