Nasıl yapılır: MSIL'den oluşturulan yerel kodda özel durumları yakalama
Yerel kodda, MSIL'den yerel C++ özel durumunu yakalayabilirsiniz. ve __except
ile __try
CLR özel durumlarını yakalayabilirsiniz.
Daha fazla bilgi için bkz . Yapılandırılmış Özel Durum İşleme (C/C++) ve Özel durumlar ve hata işleme için modern C++ en iyi yöntemleri.
Örnek 1
Aşağıdaki örnek, biri yerel özel durum oluşturan iki işlevli, diğeri ise MSIL özel durumu oluşturan bir modülü tanımlar.
// catch_MSIL_in_native.cpp
// compile with: /clr /c
void Test() {
throw ("error");
}
void Test2() {
throw (gcnew System::Exception("error2"));
}
Örnek 2
Aşağıdaki örnek, yerel ve MSIL özel durumunu yakalayan bir modülü tanımlar.
// 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