程序崩溃是每一个c++程序员都十分头疼的问题。你可能使用了空指针,可能数组越界。总之在一些乱七八糟的情况下,程序会出现闪退,或者弹出类似如下的对话框等让人难以接受的情况。
为了让我们的程序死的不那么难看,windows提供了一个如下函数:
LPTOP_LEVEL_EXCEPTION_FILTER
WINAPI
SetUnhandledExceptionFilter(
__in_opt LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter
);
由MSDN我们可以知道:当前进程中发送任何异常时,SetUnhandledExceptionFilter都能捕获到,并将调用lpTopLevelExceptionFilter回调函数。
所以在异常发送时 我们可以在lpTopLevelExceptionFilter中做我们想做的时。
LONG CallBackCrashHandler(EXCEPTION_POINTERS *pException) { // 这里你可以做一个漂亮的界面或者其他 // MessageBox(NULL,L"哎呀妈,崩溃了",L"错误",MB_OK); return EXCEPTION_EXECUTE_HANDLER; } void Crash() { int i = 13; int j = 0; int m = i / j; printf("%d",m); } int _tmain(int argc, _TCHAR* argv[]) { // 设置处理Unhandled Exception的回调函数 SetUnhandledExceptionFilter((LPTOP_LEVEL_EXCEPTION_FILTER)CallBackCrashHandler); Crash(); return 0; }
原文地址:http://blog.csdn.net/ren65432/article/details/45395461