由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - try catch question
相关主题
C++ Q17: throw 2一道编程题 - throw Exceptions
c++:exception 一问Two questions about handling exceptions in C++
大家对 exception 都是怎么处理的?A try-catch problem in C++
Exception 问题求助c++ exception 一问
C++ try {} catch(...){} 能扑捉一切异常吗?c++ exception
真是痛恨喜欢 throw 的猪请教:函数后面的 throw() 有意义么?
Java的例外处理问题什么情况下不用写throws关于 exception 的一个问题
C++ Q15: throwC++ 用户定义exception的标准用法是什么?
相关话题的讨论汇总
话题: catch话题: log话题: exception话题: try话题: function
进入Programming版参与讨论
1 (共1页)
c*******9
发帖数: 6411
1
assuming we have the code:
try{
function();
}
catch(exception e)
{
log(..)
}
int i = 1;
...
when some code inside function() throw an exception and get caught here,
after log(..)
will the program continue to execute the statement "int i=1", or it just
stop?
thanks...
X****r
发帖数: 3557
2
Yes, unless log(..) throws.

【在 c*******9 的大作中提到】
: assuming we have the code:
: try{
: function();
: }
: catch(exception e)
: {
: log(..)
: }
: int i = 1;
: ...

1 (共1页)
进入Programming版参与讨论
相关主题
C++ 用户定义exception的标准用法是什么?C++ try {} catch(...){} 能扑捉一切异常吗?
编程题一道真是痛恨喜欢 throw 的猪
请教一个c++ throw exception 问题Java的例外处理问题什么情况下不用写throws
ExceptionC++ Q15: throw
C++ Q17: throw 2一道编程题 - throw Exceptions
c++:exception 一问Two questions about handling exceptions in C++
大家对 exception 都是怎么处理的?A try-catch problem in C++
Exception 问题求助c++ exception 一问
相关话题的讨论汇总
话题: catch话题: log话题: exception话题: try话题: function