德尔福重载程序

前端之家收集整理的这篇文章主要介绍了德尔福重载程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想重载一个类中的过程.
为此,我写道:
type 

  TMyClass = class(TObject)
  private...
  ...
  public 
   constructor create;
   destructor destroy;
   procedure dosomething(filename: string); overload;
   procedure dosomething(s: string; t: string; u: string); overload;


implementation

  procedure dosomething(filename:string);
  begin
  end;

  procedure dosomething(s: string; t: string; u: string);
  begin
  end;

但德尔福告诉我有关前向或外部声明错误错误……

这是为什么?

提前致谢!

解决方法

你必须添加类名…
implementation   

procedure TMyClass.dosomething(filename:string);    
begin    
end;

procedure TMyClass.dosomething(s: string; t: string; u: string);    
begin    

end;
原文链接:https://www.f2er.com/delphi/102001.html

猜你在找的Delphi相关文章