在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在函数中,使用Result作为返回变量,必须要等所有代码执行完成 function TForm1.abc(x, y: Integer): Integer; begin if y = 0 then Result := 0 else Result := x / y; end; Delphi 2009,新增了Exit方法,指定返回值,同时退出函数 function TForm1.abc(x, y: Integer): Integer; begin if y = 0 then Exit(0); Result := x / y; //如果y等于0,这一行不会被执行 end;
Exit方法,和C系语言的return的作用基本是一致的。
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论