0
什麼是處理無效功能的最佳方式調用與未指定的參數對於不具有用戶界面訪問異常處理,契約式設計
function safeSQRT (x : Real) : real;
begin
/// check for valid params .....
if (x<0) then
begin
exit;
/// create a exception here ??
end;
end;
在第一次引發異常之前,您將退出該功能。 – TLama