z*y 发帖数: 1311 | 1 I use visual studio 2005.
"try" 和 "catch (...)" 能catch住所有的exception吗?怎么我用了以后程序还是报
错有unhandled exception呢(从debug看try/catch放的位置应该是对的)?
thanks for the help. |
c**a 发帖数: 316 | 2 不能。
【在 z*y 的大作中提到】 : I use visual studio 2005. : "try" 和 "catch (...)" 能catch住所有的exception吗?怎么我用了以后程序还是报 : 错有unhandled exception呢(从debug看try/catch放的位置应该是对的)? : thanks for the help.
|
s*****g 发帖数: 323 | 3 可以把
【在 c**a 的大作中提到】 : 不能。
|
p***o 发帖数: 1252 | 4 It can catch all C++ exceptions but not win32 exceptions (google SEH).
【在 s*****g 的大作中提到】 : 可以把
|
p****o 发帖数: 1340 | 5 hardware exceptions cannot be caught neither.
【在 p***o 的大作中提到】 : It can catch all C++ exceptions but not win32 exceptions (google SEH).
|