⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example29.cpp

📁 Advanced Internet Programming Lecture 2 C/C++ Review Li,Suke School of Software and Microelectroni
💻 CPP
字号:
#include <iostream>#include <cstring>using namespace std;class MyException {public:  char str_what[80];  int what;  MyException() { *str_what = 0; what = 0; }  MyException(char *s, int e) {    strcpy(str_what, s);    what = e;  }};int main(){  int i;  try {    cout << "Enter a positive number: ";    cin >> i;    if(i<0)      throw MyException("Not Positive", i);  }  catch (MyException e) { // catch an error    cout << e.str_what << ": ";    cout << e.what << "\n";  }  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -