exit和abort的区别
我认为编程基本功很重要,基本功不扎实,出的问题就会觉得莫名其妙和大家分享找到的小知识
Exit退出过程或函数
Abort程序终止执行
比如
function test():integer;
begin
abort;//
end;
function call():integer;
begin
test();//这里调用Test,将不会执行SHOWMESSAGE这个对话框
showmessage('abc');
end;
---------------------------------
function test():integer;
begin
exit;//
end;
function call():integer;
begin
test();//这里调用Test,将会执行SHOWMESSAGE这个对话框
showmessage('abc');
end;
页:
[1]