However, there is one common thing in all Windows operating system: In such event, you lose all your work you have done since the last save operation.
This problem is mostly occurred due to a bug in the application itself, or in the one of the components or libraries of the operating system. luckily, the programmer has the ability to avoid this kind of annoying crashes, by applying a simple exception handling mechanism.
Borland Delphi development tool is a good example of effective crash handling: The executables created by this tool has a special build-in exception handling routines, so whenever an exception is occurred in a Delphi program, a special dialog-box of Delphi is displayed. This dialog-box contains some information about the problem that caused the exception. After the user clicks 'Ok', the program continues to run properly.
Visual C++ (as well as other development tools from Microsoft) doesn't provide an automatic exception handling module like Delphi, so if you want to avoid crashes in your C/C++ application, you have to explicitly add exception handling routines to your software.
The ExceptionTest Example
The ExceptionTest project example demonstrate how to avoid application crash, by using the __try and __except statements. When you run the sample, you get a dialog-box containing 2 buttons that deliberately causes an exception. The first button raises the exception without exception handling block, and this causes the application to crash immediately. The second button raises the exception from within a __try block. When the exception is occurred, the function inside the __except statement (GetExceptionInformation) is called. This function displays a special dialog-box with a little information about the exception, and allow the user to decide whether he wants to continue to run the program or to terminate it. The user can also copy the exception information to the clipboard in order to send it to the author of the software.
| Download ExceptionTest Sample (For running in Visual C++ 6.0) |
本文探讨了Windows应用程序中常见的崩溃问题及原因,并通过一个具体的示例项目ExceptionTest展示了如何使用__try和__except语句来避免应用程序意外终止。文章还对比了不同开发工具如Delphi与Visual C++在处理异常方面的差异。

3万+

被折叠的 条评论
为什么被折叠?



