是否有像return
C 中的任何命令/构造立即从保留结果代码的 Inno Setup 脚本代码的函数中退出?
我想要一些东西
If k = false then
Begin
Result:=false;
Exit;
End;
是否有像return
C 中的任何命令/构造立即从保留结果代码的 Inno Setup 脚本代码的函数中退出?
我想要一些东西
If k = false then
Begin
Result:=false;
Exit;
End;
你的代码是正确的。
使用该Exit
语句退出 afunction
或 a procedure
。使用function
, 设置Result
自动变量,在调用 , 之前Exit
设置返回值。
function MyFunction: Boolean;
begin
if not SomeTest then
begin
{ cannot do stuff, aborting }
Result := False;
Exit;
end;
{ do stuff }
Result := True;
end;