Procedura: Intercettare le eccezioni nel codice nativo generato da MSIL
Nel codice nativo è possibile intercettare l'eccezione C++ nativa da MSIL. È possibile intercettare le eccezioni CLR con __try
e __except
.
Per altre informazioni, vedere Structured Exception Handling (C/C++) e Procedure consigliate C++ moderne per le eccezioni e la gestione degli errori.
Esempio 1
L'esempio seguente definisce un modulo con due funzioni, una che genera un'eccezione nativa e un'altra che genera un'eccezione MSIL.
// catch_MSIL_in_native.cpp
// compile with: /clr /c
void Test() {
throw ("error");
}
void Test2() {
throw (gcnew System::Exception("error2"));
}
Esempio 2
L'esempio seguente definisce un modulo che intercetta un'eccezione nativa e 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();
}
error
caught an exception