我已经声明了以下函数:
function next(current, next: string): Integer;
begin
form1.Label1.Caption := next;
form1.Label2.Caption := current;
form1.label3.Caption := clipboard.AsText+inttostr(c);
Result:=1;
end;
我尝试使用以下代码执行它:
if label1.Caption = '' then res := next('current', 'next');
我收到以下错误:
[错误] Unit1.pas(47): E2034 实际参数过多
我认为所有参数都很好,那么为什么会出现该错误?