I discovered a strange problem in Delphi XE concerning a generic type def. I created a derivative of TObjectList that include a number of classes (in example fIndex). Then I create a descendant class TMyButtonlist that contains a link to an owner. The object fIndex is not created, so must be nil on destruction. But when I set the fOwer variable, the fIndex variable gets the same pointer, and crashes at destruction.
type
TMyObjectList<T:class> = class(TObjectList<T>)
private
fIndex:TStringList;
public
destructor Destroy; override;
end;
TMyButtonList = class(TMyObjectList<TButton>)
private
Owner:TObject;
end;
destructor TMyObjectList<T>.Destroy;
begin
fIndex.Free;
inherited;
end;
procedure TMainForm.btnClick(Sender: TObject);
var
Buttonlist:TMyButtonList;
begin
Buttonlist:=TMyButtonList.Create;
Buttonlist.Owner := Self;
ButtonList.Free;
end;