Registriert seit: 1. Apr 2005
Ort: Bad Tölz
4.149 Beiträge
Delphi 2006 Professional
|
Re: Speicherbereinigung von Strings
17. Jul 2007, 14:56
öhm...
Delphi-Quellcode:
PStringContainer = ^TStringContainer;
TStringContainer = record
s: string;
end;
//string "sichern"
New(MyPStringContainer);
MyPStringContainer.s := 'bla';
//und dann record in ne liste packen.
//string freigeben
Dispose(MyPStringContainer);
soltle das nicht reichen?
Lukas Erlacher Suche Grafiktablett. Spenden/Gebrauchtangebote willkommen.
Gotteskrieger gesucht!
For it is the chief characteristic of the religion of science that it works. - Isaac Asimov, Foundation I, Buch 1
|