Thema: Delphi Array verkleinern

Einzelnen Beitrag anzeigen

Benutzerbild von Neutral General
Neutral General

Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#6

Re: Array verkleinern

  Alt 26. Mai 2007, 13:22
Hi,

Also von Delphi selbst wird es ca. so gemacht:

Delphi-Quellcode:
procedure Delete(Index: Integer);
begin
  FreeAndNil(Array[Index]);
  System.Move(Array[Index+1],Array[Index],ArrayCount*SizeOf(ArrayDatenTyp));
  dec(ArrayCount);
  SetLength(Array,ArrayCount);
end;
Ich habs jetzt ausm Kopf gemacht... Ich hoffe das stimmt so...

Gruß
Neutral General
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
  Mit Zitat antworten Zitat