delphi中的forward是什么意思
2个回答
展开全部
提前声明。通常只在implementation部分使用。
如果两个函数都在implementaion部分实现,而没有在interface部分声明才需要这个关键字。
例如FuncA和FuncB要相互调用,为了让FuncA知道有FuncB存在,就在FuncA的前面先声明一次FuncB并加上forward。
如果FuncB在interface中声明过了就不再需要了。
function FuncB(a: Integer): Integer; forward;
function FuncA(a: Integer): Integer;
begin
Result := FuncB(a) + 12;
end;
function FuncB(a: Integer): Integer;
begin
if (a > 99) Result := 99 else Result := FuncA(a) + 12;
end;
如果两个函数都在implementaion部分实现,而没有在interface部分声明才需要这个关键字。
例如FuncA和FuncB要相互调用,为了让FuncA知道有FuncB存在,就在FuncA的前面先声明一次FuncB并加上forward。
如果FuncB在interface中声明过了就不再需要了。
function FuncB(a: Integer): Integer; forward;
function FuncA(a: Integer): Integer;
begin
Result := FuncB(a) + 12;
end;
function FuncB(a: Integer): Integer;
begin
if (a > 99) Result := 99 else Result := FuncA(a) + 12;
end;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询