Hi
Ich erhalte folgende Warnung:
"[Pascal Warnung] Unit1.pas(22): W1010 Methode 'Destroy' verbirgt virtuelle Methode vom Basistyp 'TObject'"
Was bedeutet das? Die Delphi-Hilfe bringt mich auch nicht weiter.
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 =
class(TForm)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
TMyObj =
class(TObject)
strict private
Lines:TStringList;
public
constructor create();
destructor destroy;
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
constructor TMyObj.create;
begin
Lines:=TStringList.Create;
end;
destructor TMyObj.Destroy;
begin
FreeAndNil(Lines);
end;
end.