📄 main.cpp
字号:
#include <iostream>
#include <stdlib.h>
#include <string>
using namespace std;
void ProcessData() {
//throw string("Oops, I found some bad data!");
}
void ProcessMore() {
throw 10.5;
}
int main(int argc, char *argv[])
{
try {
ProcessData();
ProcessMore();
cout << "No problems!" << endl;
}
catch (string excep){
cout << "Found an error. Here's the message.";
cout << endl;
cout << excep;
cout << endl;
}
catch (int num) {
cout << "Found a numerical error. Here it is.";
cout << endl;
cout << num;
cout << endl;
}
cout << "All finished." << endl;
system("PAUSE");
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -