도움말을 먼저 찾아보시도록 하세요.. 잘나와 있습니다.. 참고로 도움말을 그대로 복사했습니다.
Abort Routine
Raises a silent exception.
Unit
SysUtils
Syntax
[Delphi] procedure Abort();
Description
Use Abort to escape from an execution path without reporting an error.
Abort raises a special "silent exception" (EAbort), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block.
---------------------------------------------------------------------------------------------------------------------
Exit Routine
Exits from the current procedure.
Unit
System
Syntax
[Delphi] procedure Exit();
Description
In Delphi, the Exit procedure immediately passes control away from the current procedure. If the current procedure is the main program, Exit causes the program to terminate.
Exit will cause the calling procedure to continue with the statement after the point at which the procedure was called.
Note:
Exit passes control away from the current procedure, not merely the current block. But Exit does not violate the flow of control dictated by a try..finally construct; if Exit is called inside the try clause, the finally clause is still executed.
도움말을 먼저 찾아보시도록 하세요.. 잘나와 있습니다.. 참고로 도움말을 그대로 복사했습니다.
Abort Routine
Raises a silent exception.
Unit
SysUtils
Syntax
[Delphi] procedure Abort();
Description
Use Abort to escape from an execution path without reporting an error.
Abort raises a special "silent exception" (EAbort), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block.
---------------------------------------------------------------------------------------------------------------------
Exit Routine
Exits from the current procedure.
Unit
System
Syntax
[Delphi] procedure Exit();
Description
In Delphi, the Exit procedure immediately passes control away from the current procedure. If the current procedure is the main program, Exit causes the program to terminate.
Exit will cause the calling procedure to continue with the statement after the point at which the procedure was called.
Note:
Exit passes control away from the current procedure, not merely the current block. But Exit does not violate the flow of control dictated by a try..finally construct; if Exit is called inside the try clause, the finally clause is still executed.