Zitat von
Luckie:
Ich habe es jetzt so:
Delphi-Quellcode:
(...)
TAddressBook = class(TObject)
private
FContacts: TContactList;
public
constructor Create;
destructor destroy; override;
property Contacts: TContactList read FContacts write FContacts; //<------- write auch?? (IngoD7)
end;
Frage:
Bist du sicher, dass du da die Referenzierung
auf eine andere TContactList-Instanz ermöglichen möchtest?
Die Daten der im Konstruktor erzeugten Instanz von TContactList liegen danach im Nirvana.