Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi TStringList und Count (https://www.delphipraxis.net/62716-tstringlist-und-count.html)

Spurius 8. Feb 2006 15:25


TStringList und Count
 
Hallo,
Delphi-Quellcode:
procedure TForm1.com1TriggerAvail(CP: TObject; Count: Word);
var i: word;
    input: string;
    liste: TStringList;
begin
 liste := TStringlist.Create;
 for i := 1 to count do begin
  input := input + com1.GetChar;
 end;
 liste.Add(input);
 showmessage(inttostr(liste.Count));
 input := '';
end;
Ich bekomme da immer "1" als Meldung, dabei sollte sich eigentlich das Resultat von Count immer erhöhen oder?
Gruß
Spurius

3_of_8 8. Feb 2006 15:31

Re: TStringList und Count
 
Natürlich nicht.

Du erzeugst bei jedem Aufruf der Funktion eine neue Instanz der TStringList und setzt den Pointer auf die lokale Variable liste.

Wenn die Variable liste programmweit gelten soll, musst du wohl oder übel eine globale Variable nehmen.

Muetze1 8. Feb 2006 17:47

Re: TStringList und Count
 
Zitat:

Zitat von 3_of_8
Wenn die Variable liste programmweit gelten soll, musst du wohl oder übel eine globale Variable nehmen.

Eine Deklaration im private Bereich des Formulars TForm1 würde auch reichen, global muss sie nicht gleich sein, vor allem, da sie nur zur Lebzeit der Klasse TForm1 gebraucht wird und er bei mehreren Instanzen von TForm1 bestimmt nicht nur eine Liste für alle Instanzen haben will.


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:36 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz