📄 c14-2-2.cpp
字号:
#include <iostream>
using namespace std;
int main()
{void f1();
try
{f1();}
catch(double)
{cout<<"OK0!"<<endl;}
cout<<"end0"<<endl;
return 0;
}
void f1()
{void f2();
try
{f2();}
catch(char)
{cout<<"OK1!";}
cout<<"end1"<<endl;
}
void f2()
{void f3();
try
{f3();}
catch(int)
{cout<<"Ok2!"<<endl;}
cout<<"end2"<<endl;
}
void f3()
{double a=0;
try
{throw a;}
catch(double)
{cout<<"OK3!"<<endl;}
cout<<"end3"<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -