Will finally block execute? if I pass exit; ?
procedure someProc;
begin
Try
Exit;
finally
do_something;
end;
end;
|
Will finally block execute? if I pass exit; ?
| ||||
|
feedback
|
|
Yes, | |||||||||||
feedback
|
|
The finally clause will always be executed, unless the executing thread enters a non-terminating loop, blocks indefinitely or is terminated abnormally, whilst executing the try clause. The pertinent documentation states (emphasis mine):
| ||||
feedback
|
|
A quick test app could have answered this question really quickly.
| |||
|
feedback
|
|
For the sake of completeness - finally block will not execute if the process or thread executing the try..finally block is terminated with TerminateProcess/TerminateThread. For example, finally block will not be executed in the code below.
| |||||||||
feedback
|
while True do try Exit; finally Continue; end;will not compile - see Fun with Infinite Loops in Delphi and Java – mjn Dec 23 '11 at 8:13