如何在delphi中标记代码(就象在C语言中一样)(5分)

  • 主题发起人 主题发起人 xhlight
  • 开始时间 开始时间
X

xhlight

Unregistered / Unconfirmed
GUEST, unregistred user!
C语言:
firstline: //标记
showmessage('hello world!');
lastline: //标记
在delphi中如何实现以上标记, firstline和lastline这两个标记在别的代码中可是要使用的,为得是能找到标记的地址。
 
我不太明白你的意思但是在DELPHI可以用标签来作为程序段的标记,用GOTO语句来跳转但这不安全极易产生逻辑混乱应不用为好!示例如下:
procedure button1onclick()
label aa,bb;
begin
goto aa;
aa:
begin
if then
goto bb;
end;
bb:begin

if then
goto aa;
end;



end;
 

Similar threads

回复
0
查看
995
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部