主题: try{return;}catch(...){}
int func() {
try{
return 0;
}catch(...){
std::cout<<"exception"<<std::endl;
}
return 0;
}
会出现什么状况?
a.编译时报错
b.运行时异常
c.无错误,输出exception
d.无错误,无输出
您尚未登录。 请选择登录或是注册一个新帐号。
int func() {
try{
return 0;
}catch(...){
std::cout<<"exception"<<std::endl;
}
return 0;
}
会出现什么状况?
a.编译时报错
b.运行时异常
c.无错误,输出exception
d.无错误,无输出
Powered by PunBB, supported by Informer Technologies, Inc.