赞
踩
现在需要从键盘上输入x(工资)和h(工时)求时薪,要求用异常处理来解决:
- #include<iostream>
- #include<string>
- using namespace std;
- void check(int x, int h)
- {
- try
- {
- if ( x < 0 || h < 0 ) throw"输入负数,不合法!";
- if ( h == 0 ) throw"工时为0,不合法!";
- else throw 1;
- }
- catch(char *s)
- { cout << s << endl; }
- catch(int s)
- {
- try
- {
- if ( x/h < 10 ) throw"违反劳动法";
- else throw 1;
- }
- catch(int s) { cout << "时薪是:" << x/h << endl; }
- catch(char *s) { cout << s << endl; }
- }
- }
- int main()
- {
- int x, h;
- cout << "从键盘上输入x(工资)和h(工时): ";
- cin >> x >> h;
- check(x, h);
- return 0;
- }
在这个程序中异常并没有被捕获到,而是程序会在中间停很长一段时间,并显示出:
出现这种情况的原因就是在catch中异常并没有匹配上去,C++将自动调用terminate()终止程序。那这个情况该怎么解决呢?
只需要在catch中的char *s 的前面加上const就可以解决
,这里是将char *s变成了一个字符串常量指针。
- void check(int x, int h)
- {
- try
- {
- if ( x < 0 || h < 0 ) throw"输入负数,不合法!";
- if ( h == 0 ) throw"工时为0,不合法!";
- else throw 1;
- }
- catch(const char *s)
- { cout << s << endl; }
- catch(int s)
- {
- try
- {
- if ( x/h < 10 ) throw"违反劳动法";
- else throw 1;
- }
- catch(int s) { cout << "时薪是:" << x/h << endl; }
- catch(const char *s) { cout << s << endl; }
- }
- }
如此就完美解决问题啦!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。