try finally语句的独门密技发布 ( 积分: 10 )

  • 主题发起人 主题发起人 我爱PASCAL
  • 开始时间 开始时间

我爱PASCAL

Unregistered / Unconfirmed
GUEST, unregistred user!
经常有写以下代码的情况,但不够紧凑,要改的话要么用goto,要么编一个过程;
用goto又不合结构化精神,编一个过程又麻烦又不直观,不改吧又比较冗余:
begin
...
if xx then
begin
do_last_thing;
.....
end

...
if yy then
begin
do_last_thing;
.....
end

...
end;
begin
do_last_thing;
.....
end;
改为以下:
try
...
if xx then abort;
...
if yy then abort;
...
finally
do_last_thing;
.....
end;
 
用 seh 在密集强度运算中会大大降低性能.
 
try
...
if xx then abort;
...
if yy then abort;
...
finally
do_last_thing;
.....
end

还会引发一个异常。

begin
if xx then
...
if yy then
...
do_last_thing;
.....
end;
 
难道非要用goto语句
 
goto 没有什么不好,掌握得好的话.
事实上编译后的程序都是goto循环体而已.
 
谢谢,看来结构化鼓吹的理论上可不用一句goto是不现实的。
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
572
import
I
后退
顶部