当前位置:   article > 正文

C++异常处理报错【terminate called after throwing an instance of ‘char const‘】

terminate called after throwing an
  • 情景引入 

    现在需要从键盘上输入x(工资)和h(工时)求时薪,要求用异常处理来解决:

  1. x和y是负数的时候,输出“输入负数不合法”
  2. x不为0,y是0的时候,输出“工时为0不合法”
  3. 时薪小于10元的时候,输出“违反劳动法”
  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. void check(int x, int h)
  5. {
  6. try
  7. {
  8. if ( x < 0 || h < 0 ) throw"输入负数,不合法!";
  9. if ( h == 0 ) throw"工时为0,不合法!";
  10. else throw 1;
  11. }
  12. catch(char *s)
  13. { cout << s << endl; }
  14. catch(int s)
  15. {
  16. try
  17. {
  18. if ( x/h < 10 ) throw"违反劳动法";
  19. else throw 1;
  20. }
  21. catch(int s) { cout << "时薪是:" << x/h << endl; }
  22. catch(char *s) { cout << s << endl; }
  23. }
  24. }
  25. int main()
  26. {
  27. int x, h;
  28. cout << "从键盘上输入x(工资)和h(工时): ";
  29. cin >> x >> h;
  30. check(x, h);
  31. return 0;
  32. }

 在这个程序中异常并没有被捕获到,而是程序会在中间停很长一段时间,并显示出:

 出现这种情况的原因就是在catch中异常并没有匹配上去,C++将自动调用terminate()终止程序。那这个情况该怎么解决呢?

  • 问题解决

只需要在catch中的char *s 的前面加上const就可以解决这里是将char *s变成了一个字符串常量指针。

  1. void check(int x, int h)
  2. {
  3. try
  4. {
  5. if ( x < 0 || h < 0 ) throw"输入负数,不合法!";
  6. if ( h == 0 ) throw"工时为0,不合法!";
  7. else throw 1;
  8. }
  9. catch(const char *s)
  10. { cout << s << endl; }
  11. catch(int s)
  12. {
  13. try
  14. {
  15. if ( x/h < 10 ) throw"违反劳动法";
  16. else throw 1;
  17. }
  18. catch(int s) { cout << "时薪是:" << x/h << endl; }
  19. catch(const char *s) { cout << s << endl; }
  20. }
  21. }

 如此就完美解决问题啦!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/939555
推荐阅读
  

闽ICP备14008679号