可能重复:
在捕获异常后确定异常类型?
我知道 C# 中的异常处理:
try{
// code causing exception
}
catch(System.Exception e){
// Here e variable holds the information about the actual exception that has occured in try block.
}
但是,我想在 VC++(在 VS 2008 上)中实现相同的目标。我们如何捕获VC++ 中 try 块中发生的异常类型,因为我们在 VC++ 中没有包的概念?