由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - does this line get executed after exception caught
相关主题
C++: exception: out-of-order execution?算了, 我还是把这个版Z掉吧
C++ Q17: throw 2Stack Overflow怎么办?
C++ exception handling 一问try catch question
Two questions about handling exceptions in C++A try-catch problem in C++
C++ Q15: throw请教:函数后面的 throw() 有意义么?
perl eval and if[合集] Exception Handling in C
C++ Exception Question《Exceptional C++ Style》这本书值得看么?
C语言高级就高级在指针上C++ namespace 弱问
相关话题的讨论汇总
话题: exception话题: catch话题: block话题: return话题: executed
进入Programming版参与讨论
1 (共1页)
e******r
发帖数: 220
1
如果程序throw exception in try block, and catch exception in catch block.
那么结尾的"return 0"执行不执行呢? 谢谢
int main()
{
try
{
}
catch
{
}
finally
{
}
return 0;
}
e*****w
发帖数: 144
2
这是什么语言?

block.

【在 e******r 的大作中提到】
: 如果程序throw exception in try block, and catch exception in catch block.
: 那么结尾的"return 0"执行不执行呢? 谢谢
: int main()
: {
: try
: {
: }
: catch
: {
: }

r********d
发帖数: 23
3
执行

block.

【在 e******r 的大作中提到】
: 如果程序throw exception in try block, and catch exception in catch block.
: 那么结尾的"return 0"执行不执行呢? 谢谢
: int main()
: {
: try
: {
: }
: catch
: {
: }

r********d
发帖数: 23
4
西加瓦。。。

【在 e*****w 的大作中提到】
: 这是什么语言?
:
: block.

d******n
发帖数: 42
5
d******n
发帖数: 42
6
I think it is C++
without exceptions, the return statement will be executed.
r********d
发帖数: 23
7
Does C++ have such a keyword "finally"?

【在 d******n 的大作中提到】
: I think it is C++
: without exceptions, the return statement will be executed.

f**y
发帖数: 138
8
Man, C++ doesn't have 'finally'.
1 (共1页)
进入Programming版参与讨论
相关主题
C++ namespace 弱问C++ Q15: throw
c++的问题perl eval and if
C++ 用户定义exception的标准用法是什么?C++ Exception Question
大家对 exception 都是怎么处理的?C语言高级就高级在指针上
C++: exception: out-of-order execution?算了, 我还是把这个版Z掉吧
C++ Q17: throw 2Stack Overflow怎么办?
C++ exception handling 一问try catch question
Two questions about handling exceptions in C++A try-catch problem in C++
相关话题的讨论汇总
话题: exception话题: catch话题: block话题: return话题: executed