Delphi-PRAXiS
Seite 1 von 3  1 23      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Die Delphi-IDE (https://www.delphipraxis.net/62-die-delphi-ide/)
-   -   Unsichere Typumwandlung bei TFormatSettings (https://www.delphipraxis.net/169987-unsichere-typumwandlung-bei-tformatsettings.html)

Gollum 24. Aug 2012 07:50

Unsichere Typumwandlung bei TFormatSettings
 
Hallo,

seit neuestem warnt mich der Compiler vor einer unsicheren Typumwandlung, wenn ich FormatSettings benutze.


Beispiel:
Delphi-Quellcode:
function GetMonatText(aMonat:Integer; short:Bool=False):String;
begin
  if short then Result:=FormatSettings.ShortMonthNames[aMonat]
    else Result:=FormatSettings.LongMonthNames[aMonat];
end;
Warnhinweis:
[DCC Warnung] uDatumLight.pas(492): W1048 Unsichere Typumwandlung von 'string' nach 'TFormatSettings'


Wenn ich folgendes mache, kommt keine Warnung!?
Delphi-Quellcode:
function GetMonatText(aMonat:Integer; short:Bool=False):String;
var fms:TFormatSettings;
begin
  fms:=TFormatSettings.Create;
  if short then Result:=fms.ShortMonthNames[aMonat]
    else Result:=fms.LongMonthNames[aMonat];
end;
Das kann doch sicher nicht die Lösung des Problems sein.
Was läuft da schief?

s.h.a.r.k 24. Aug 2012 09:14

AW: Unsichere Typumwandlung bei TFormatSettings
 
Bist du sicher, dass der Warnhinweis bei diesem Code hier kommt? :shock:
Delphi-Quellcode:
function GetMonatText(aMonat:Integer; short:Bool=False):String;
begin
  if short then Result:=FormatSettings.ShortMonthNames[aMonat]
    else Result:=FormatSettings.LongMonthNames[aMonat];
end;
Da wird doch nichts an FormatSettings zugewiesen, sondern nur gelesen... :gruebel:

Gollum 24. Aug 2012 09:30

AW: Unsichere Typumwandlung bei TFormatSettings
 
Zitat:

Bist du sicher, dass der Warnhinweis bei diesem Code hier kommt? :shock:
Zu 100%. Nicht nur an dieser Stelle, sondern an allen Stellen, an denen ich Formatsettings benutze.

s.h.a.r.k 24. Aug 2012 09:41

AW: Unsichere Typumwandlung bei TFormatSettings
 
Hm, also bei mir klappt es. Habe es gerade mal bei mir getestet (auch XE2) und alles passt.

Erzeugst du irgendwo neue Instanzen von TFormatSettings? Hast du irgendwo eine Variable namens FormatSettings vom Typ string? Seltsam ists schon..

Gollum 24. Aug 2012 09:48

AW: Unsichere Typumwandlung bei TFormatSettings
 
Zitat:

Erzeugst du irgendwo neue Instanzen von TFormatSettings? Hast du irgendwo eine Variable namens FormatSettings vom Typ string? Seltsam ists schon..
Das dieses Verhalten seltsam ist, da gebe ich Dir Recht.
Und nein, ich erzeuge keine Extrainstanz von Formatsettings und auch keine Varable oder ähnliches.
Warum sollte ich auch?

Furtbichler 24. Aug 2012 10:30

AW: Unsichere Typumwandlung bei TFormatSettings
 
Poste mal dein Beispielprojekt, bitte.

Gollum 24. Aug 2012 10:49

AW: Unsichere Typumwandlung bei TFormatSettings
 
Zitat:

Zitat von Furtbichler
Poste mal dein Beispielprojekt, bitte.

Geht leider nicht. Zum Einen ist das Projekt zu komplex (incl. Datenbankanbindung) und zum Anderen hat mein Arbeitgeber etwas dagegen.

himitsu 24. Aug 2012 11:10

AW: Unsichere Typumwandlung bei TFormatSettings
 
Wenn man sich anguckt, wie die globale "Instanz" dieses Records deklariert ist...
Eigentlich sollte es nicht, aber da kann der Compilier schonmal durcheinander kommen.

Zum Glück ist es bei dir nur eine Warnung, denn eigentlich würde soeine Zuweisung, von derartig inkompatiblen Typen, in einem Error enden und den Kompilierungsvorgang abbrechen.

Hier (XE2 ohne Updates) wird aber auch nicht gemeckert.

s.h.a.r.k 24. Aug 2012 11:26

AW: Unsichere Typumwandlung bei TFormatSettings
 
Zitat:

Zitat von Gollum (Beitrag 1179699)
Zitat:

Zitat von Furtbichler
Poste mal dein Beispielprojekt, bitte.

Geht leider nicht. Zum Einen ist das Projekt zu komplex (incl. Datenbankanbindung) und zum Anderen hat mein Arbeitgeber etwas dagegen.

Kannst du dann wenigstens alle relevanten Stellen posten, die mit FormatSettings zu tun haben!?

Gollum 24. Aug 2012 11:34

AW: Unsichere Typumwandlung bei TFormatSettings
 
Hallo,

kann ich, bringt aber warscheinlich nichts.

Hier mal einige Auszüge:
Delphi-Quellcode:
  if CharInSet(Text[i], ['0'..'9', '-', '+', FormatSettings.DecimalSeparator]) then
  ...
  ...
  if short then Result:=FormatSettings.ShortDayNames[aTag]
    else Result:=FormatSettings.LongDayNames[aTag]
  ...
  ...
  for i:=1 to 12 do cbbMonat.Items.Add(FormatSettings.LongMonthNames[i]);
Das komische an der Sache ist, dass in einem anderen Projekt, dass auch auf (gemeinsame) Dateien dieses Projektes zugreift, die Warnung nicht erscheint.


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:58 Uhr.
Seite 1 von 3  1 23      

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