![]() |
TStringList initialisieren! Wie?
Ich bekomme vom Compiler die Warnung:
Code:
Es funktionirt ja auch so nur ich möchte eigentlich keine Warnungen haben.
[Warnung] Unit1.pas(254): Variable 'pub' ist möglicherweise nicht initialisiert worden
Wie initialisiere ich den eine TStringList? Geht das nicht mit
Delphi-Quellcode:
?
pub := TStringList.Create;
Delphi-Quellcode:
procedure delphi_versionadd(ort, key: string);
var regist: TRegistry; pub: TStringList; pubdir, pubbrc32, pubbrcc32: string; pubi: integer; begin regist := TRegistry.Create; try regist.RootKey := HKEY_LOCAL_MACHINE; pub := TStringList.Create; regist.OpenKey(ort, false); regist.GetKeyNames(pub); regist.CloseKey; if pub.count > 0 then begin for pubi := 0 to pub.count - 1 do begin regist.OpenKeyReadOnly(ort + '\' + pub[pubi]); if regist.ValueExists(key) then begin pubdir := regist.ReadString(key); regist.CloseKey; pubdir := IncludeTrailingPathDelimiter(pubdir) + 'Bin\'; if FileExists(pubdir + 'brc32.exe') then pubbrc32 := pubdir + 'brc32.exe'; if FileExists(pubdir + 'brcc32.exe') then pubbrcc32 := pubdir + 'brcc32.exe'; additem(pub[pubi], pubbrc32, pubbrcc32); end; end; end; finally regist.free; pub.Free; end; end; |
Re: TStringList initialisieren! Wie?
Erzeug die StringListe ausserhalb des try-finally-Blocks.
|
Re: TStringList initialisieren! Wie?
Hallo Deltachaos,
Delphi-Quellcode:
besser:
finally
regist.free; pub.Free; end;
Delphi-Quellcode:
FIVO-Prinzip!
finally
pub.Free; regist.free; end; Bis bald Chemiker |
Re: TStringList initialisieren! Wie?
wie Luckie schon sagte:
Delphi-Quellcode:
oder notfalls auch sowas:
regist := TRegistry.Create;
try pub := TStringList.Create; try ... finally pub.Free; end; finally regist.free; end;
Delphi-Quellcode:
[edit]
pub := nil;
regist := TRegistry.Create; try ... pub := TStringList.Create; ... finally {if Assigned(pub) then} pub.Free; regist.free; end; ach stimmt ja ... nja, zumindestens wenn man mal etwas nimmt, was nicht auf NIL prüft, dann halt selber prüfen |
Re: TStringList initialisieren! Wie?
Free prüft doch schon auf nil, insofern kannst du dir das Assigned sparen.
|
Re: TStringList initialisieren! Wie?
Zitat:
|
Re: TStringList initialisieren! Wie?
Schlag mal TObject.Free in System.pas auf. :wink:
|
Re: TStringList initialisieren! Wie?
Zitat:
Dabei ist es jetzt egal ob selbst mit Assigned geprüft wird oder ob es .Free selber nochmal macht ... wenn der Objektteiger dort sonstwohin zeigt, würde es (nochmal) knallen oder schlimmer noch, er zeigt zufällig auf ein anderes existierendes Object, dann würdes dieses freigegeben und es knallt plötzlich anderswo und man weiß nicht warum. |
Re: TStringList initialisieren! Wie?
danke.
Ich hab das
Delphi-Quellcode:
nun vor
pub := TStringList.Create;
Delphi-Quellcode:
geschrieben
try
Delphi-Quellcode:
procedure delphi_versionadd(ort, key: string);
var regist: TRegistry; pub: TStringList; pubdir, pubbrc32, pubbrcc32: string; pubi: integer; begin regist := TRegistry.Create; pub := TStringList.Create; try regist.RootKey := HKEY_LOCAL_MACHINE; regist.OpenKey(ort, false); regist.GetKeyNames(pub); regist.CloseKey; if pub.count > 0 then begin for pubi := 0 to pub.count - 1 do begin regist.OpenKeyReadOnly(ort + '\' + pub[pubi]); if regist.ValueExists(key) then begin pubdir := regist.ReadString(key); regist.CloseKey; pubdir := IncludeTrailingPathDelimiter(pubdir) + 'Bin\'; if FileExists(pubdir + 'brc32.exe') then pubbrc32 := pubdir + 'brc32.exe'; if FileExists(pubdir + 'brcc32.exe') then pubbrcc32 := pubdir + 'brcc32.exe'; additem(pub[pubi], pubbrc32, pubbrcc32); end; end; end; finally regist.free; end; end; |
Re: TStringList initialisieren! Wie?
wo ist jetzt aber dein pub.free?
Korrekt wäre es (wie bereits erwähnt) so:
Delphi-Quellcode:
von folgendem würde ich abraten:
object1 := TObject1.Create();
try object2 := TObject2.Create(); try //do something with object2 and object1 finally object2.Free; end; finally object1.Free; end;
Delphi-Quellcode:
Denn wenn bei TObject2.Create() ein Fehler auftritt wird Object1 nicht frei gegeben obwohl da beim instanzieren kein Fehler aufgetreten ist.
object1 := TObject1.Create();
object2 := TObject2.Create(); try //do something with object2 and object1 finally object1.Free; object2.Free; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:48 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