如何:在从MSIL引发的本机代码的捕获异常

在本机代码中,可以捕捉由 MSIL 的本机 C++ 异常。 可以捕获具有 __try 和 __except的 CLR 异常。

有关更多信息,请参见结构化异常处理(C++)C++异常处理

示例

下面的示例定义了两个功能,引发本机异常引发 MSIL 异常的另一个模块。

// catch_MSIL_in_native.cpp
// compile with: /clr /c
void Test() {
   throw ("error");
}

void Test2() {
   throw (gcnew System::Exception("error2"));
}

下面的示例定义了捕获本机和 MSIL 异常的模块。

// catch_MSIL_in_native_2.cpp
// compile with: /clr catch_MSIL_in_native.obj
#include <iostream>
using namespace std;
void Test();
void Test2();

void Func() {
   // catch any exception from MSIL
   // should not catch Visual C++ exceptions like this
   // runtime may not destroy the object thrown
   __try {
      Test2();
   }
   __except(1) {
      cout << "caught an exception" << endl;
   }

}

int main() {
   // catch native C++ exception from MSIL
   try {
      Test();
   }
   catch(char * S) {
      cout << S << endl;
   }
   Func();
}
  

请参见

其他资源

异常处理(C++ 组件扩展)