Delphi try except statement and try finally statement usage and differences

Source: Internet
Author: User

try//attempt to execute
{Somecode}
except//execution When an error occurs, except has a specific type of error
{Somecode}
End

try//attempt to execute
{Somecode}
finally//is enforced anyway.
{Somecode}
End

Cases:
Try
Age:=strtoint (Edit1.text);
ShowMessage (Format (' Born in%d Years ', [Yearof (now)-age]));
Except
On Econverterror do
ShowMessage (' Input edit box is not a valid number! ');
On Erangeerror do
ShowMessage (' Input edit box's age value is too big! ');
End



The reserved word on...do is used to determine the type of exception. It is important to note that the statements that follow the except must be included in one of the on...do modules, and cannot exist separately. This is also a different place from finally.


Exception handling
Try
Successful failures are skipped in the finally statement execution
Finally

End
Try
Failed to jump into the except to execute
except on E:exception do
ShowMessage (E.message);
End

Delphi try except statement and try finally statement usage and differences

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.