你给出代码出现这样的问题main.cpp: In function 'int main()': main.cpp:28:5: error: expected primary-expression before 'catch' catch(Exception& e) ^ main.cpp:28:5: error: expected ';' before 'catch' main.cpp:32:1: error: expected 'catch' at end of input } ^ main.cpp:32:1: error: expected '(' at end of input main.cpp:32:1: error: expected type-specifier at end of input main.cpp:32:1: error: expected ')' at end of input main.cpp:32:1: error: expected '{' at end of input main.cpp:32:1: error: expected '}' at end of input
时间: 2024-03-10 14:48:48 浏览: 183
这个错误提示是因为在前面的代码修改中,我在 if 语句块中加入了一个 else 语句,导致代码结构出现了错误,需要将 else 语句去掉。另外,还需要将 try 语句块后面的括号补上,这是完整的代码:
```
#include <iostream>
using namespace std;
class Exception {
public:
virtual void showMessage() = 0;
};
class RangeError : public Exception {
public:
void showMessage() {
cout << "Range Error!";
}
};
int main() {
try {
int n;
cout << "Input n(1<=n<=100):";
cin >> n;
if (n < 1 || n > 100) {
throw RangeError();
}
cout << "n:" << n << endl;
} catch (Exception& e) {
e.showMessage();
}
return 0;
}
```
请注意,当输入的 n 不在范围内时,程序会抛出 RangeError 异常,然后执行 catch 语句块中的 e.showMessage() 语句,输出 "Range Error!"。如果输入的 n 在范围内,则会输出 "n:" 和输入的 n 值。
阅读全文