Will finally block execute? if I pass exit; ?

procedure someProc;
begin
    Try
      Exit;
    finally
     do_something;
    end;
end;
link|improve this question

1  
Side note: 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
feedback

4 Answers

up vote 7 down vote accepted

Yes, finally blocks always execute, even if you call Exit somewhere. They wouldn't be worth much if they weren't always executed.

link|improve this answer
By design, finally blocks always execute. – menjaraz Dec 23 '11 at 6:04
@menjaraz I think that is what my answer indicated, is it not? – Seth Carnegie Dec 23 '11 at 6:07
Yes, this is my conviction too but you rejected my suggestion. By the way, I'm one of the early upvoter of your anwser :-). – menjaraz Dec 23 '11 at 6:28
@menjaraz I felt like your edit was too minor, because the answer already says what your edit says, but in slightly different words – Seth Carnegie Dec 23 '11 at 6:38
Don't mind! I was just kidding. My intent is not to sollicit a revert. Still I notice that dreamlax's reject reason is diametrically opposite to yours. It's also an opportunity to brush up my english (I'm not a native and english is my third foreign language). I'm afraid it's a bit beside the point but isn't communication skill something that must be sought after here on SO? Thank you for the feedback. – menjaraz Dec 23 '11 at 7:26
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):

The syntax of a try...finally statement is

try 
  statementList1
finally
  statementList2 
end 

where each statementList is a sequence of statements delimited by semicolons.

The try...finally statement executes the statements in statementList1 (the try clause). If statementList1 finishes without raising exceptions, statementList2 (the finally clause) is executed. If an exception is raised during execution of statementList1, control is transferred to statementList2; once statementList2 finishes executing, the exception is re-raised. If a call to the Exit, Break, or Continue procedure causes control to leave statementList1, statementList2 is automatically executed. Thus the finally clause is always executed, regardless of how the try clause terminates.

link|improve this answer
+1 for listing those conditions when the finally clause is not executed. – Martin James Dec 23 '11 at 16:28
feedback

A quick test app could have answered this question really quickly.

program TestFinally;

{$APPTYPE CONSOLE}

uses
  SysUtils;

begin
  try
    WriteLn('Before exiting');
    Exit;
  finally
    WriteLine('In finally. If you see this, it was written after "Exit" was called');
    ReadLn;
  end;
end.
link|improve this answer
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.

o := TObject.Create;
try
  TerminateThread(GetCurrentThread, 0);
finally
  o.Free;
end;
link|improve this answer
Did I miss that in my answer? Maybe I should have said terminate thread abnormally rather than program. – David Heffernan Dec 23 '11 at 8:41
You're right, you said that. Feel free to merge my example in your answer, then I'll delete mine. – gabr Dec 23 '11 at 9:28
2  
I edited my text to make it a little more complete. Your answer covers that particular aspect in depth and I think merging your example into my answer would detract from the main point which is the documentation quote. Thanks and +1. – David Heffernan Dec 23 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.