Partager via


Comment : Exceptions de Catch dans le code natif levée de MSIL

En code natif, vous pouvez intercepter l'exception C++ native depuis MSIL. Vous pouvez intercepter les exceptions CLR avec __try et __except.

Pour plus d’informations, consultez Gestion structurée des exceptions (C/C++) et Gestion d'exceptions C++.

Exemple

L'exemple suivant définit un module avec deux fonctions, une qui provoquent une exception native, et une autre qui provoquent une exception de langage MSIL.

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

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

L'exemple suivant définit un module qui intercepte une exception native et de langage 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();
}
  

Voir aussi

Autres ressources

gestion des exceptions sous /clr