?? fun_nthr.cpp
字號:
#include <iostream.h>
void XHandler(int test) throw()
{
if(test==0)
throw test;
if(test==1)
throw 'a';
if(test==2)
throw 123.23;
}
void main(void)
{
cout << "Start: " << endl;
try
{
XHandler(0); // try passing 1 and 2 for different responses
}
catch(int i)
{
cout << "Caught an integer." << endl;
}
catch(char c)
{
cout << "Caught a character." << endl;
}
catch(double d)
{
cout << "Caught a double." << endl;
}
cout << "End";
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -