A
Adnil
Unregistered / Unconfirmed
GUEST, unregistred user!
例如编写一个业务核心类供界面程序掉用。
业务核心类还可能被其他的类引用或者继承
type
TTest = class
procedure TestUseException
//函数使用异常机制,界面调用程序处理异常来判断执行情况
function TestUseResult: integer
//函数使用返回值,界面调用程序使用返回值判断执行情况
end;
procedure TTest.TestUseException
//函数使用异常机制
begin
somefunc...
end;
function TTest.TestUseResult: integer
//函数使用返回值
begin
Result := 0;
try
somefunc...
except
Result := 1;
end;
end;
大家说说看,到底用那一种方式比较好?
相关概念请见
http://www.delphibbs.com/delphibbs/dispq.asp?lid=620575
业务核心类还可能被其他的类引用或者继承
type
TTest = class
procedure TestUseException
//函数使用异常机制,界面调用程序处理异常来判断执行情况
function TestUseResult: integer
//函数使用返回值,界面调用程序使用返回值判断执行情况
end;
procedure TTest.TestUseException
//函数使用异常机制
begin
somefunc...
end;
function TTest.TestUseResult: integer
//函数使用返回值
begin
Result := 0;
try
somefunc...
except
Result := 1;
end;
end;
大家说说看,到底用那一种方式比较好?
相关概念请见
http://www.delphibbs.com/delphibbs/dispq.asp?lid=620575