|
Termination-Handler Syntax
The try and finally keywords are used to construct a termination handler. The following example
shows the structure of a try-finally termination handler.
try {
// guarded body of code
}
finally {
// finally block
}
As with the try-except statement, both the try block and the finally block require braces ({}), and using a goto statement to jump into either block is not permitted.
The try block contains the guarded body of code that is protected by the termination
handler. A function can have any number of try-finally statements, and these termination handling structures can be nested within
the same function or in different functions.
The finally block is executed whenever the flow of control leaves the try block. However, the finally block is not executed if either the ExitProcess or ExitThread function is called from within the try block.
If execution of the try block terminates because of an exception that invokes the exception-handling
block of a frame-based exception handler, the finally block is executed before the exception-handling block is executed. Similarly,
a call to the standard C longjmp function from the try block causes execution of the finally block before execution resumes at the target of the longjmp operation. If try block execution terminates due to a normal control statement (return, break, continue, or goto), the finally block is executed.
The AbnormalTermination function can be used within the finally block to determine whether the try block terminated sequentially that is, whether it reached the closing brace (}). Leaving the try block because of a call to longjmp, a jump to an exception handler, or a return, break, continue, or goto statement, is considered an abnormal termination. Note that failure to
terminate sequentially causes the system to search backward through all stack frames
to determine whether any termination handlers must be called. This can result
in performance degradation due to the execution of hundreds of instructions.
Execution of the finally block can terminate by any of the following means.
- Execution of the last statement in the block and continuation to the next
instruction
- Use of a normal control statement (return, break, continue, or goto)
- Use of longjmp or a jump to an exception handler
The finally block is executed in the context of the function in which the try-finally statement is located. This means that the finally block can access that function's local variables.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|