Вниз
Скачать: CL | DM;

Вопрос по try...finally.   Найти похожие ветки 

 
iNew ©   (2003-08-29 06:10) [0]

try
Source := FileOpen(FileName, fmShareDenyWrite);
if Source < 0 then
begin
FileClose(Source);
exit;
end;
DoSomething;
finally
FileClose(Source);
end;

Возможно ли использовать Exit в данном случае?


 
Anatoly Podgoretsky ©   (2003-08-29 06:29) [1]

Использовать можно и нужно, но первый FileClose надо убрать.


 
iNew ©   (2003-08-29 07:06) [2]

Но если его убрать выплонится ли FileClose, который после finally, ведь если Source < 0, то выполнится Exit.


 
Anatoly Podgoretsky ©   (2003-08-29 07:12) [3]

Да обязательно выполнится, хоть нормально, хоть в случае ошибки.


 
Song ©   (2003-08-29 08:37) [4]

2iNew © (29.08.03 06:10)

procedure Exit;

Description

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.



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.012 c
3-33427
Jean
2003-08-21 22:20
2003.09.11
Access + Excel


3-33516
eds
2003-08-19 17:28
2003.09.11
Как сделать зебру в гриде в Firebird?


3-33510
uhhax
2003-08-20 03:55
2003.09.11
нестандартный просмотр отчета


4-33841
Павел
2003-07-12 21:35
2003.09.11
Курсор над приложением


1-33565
11111
2003-08-28 17:12
2003.09.11
Редактировать строковый ресурс...




   Наверх