![]() |
Unsichere Typumwandlung bei TFormatSettings
Hallo,
seit neuestem warnt mich der Compiler vor einer unsicheren Typumwandlung, wenn ich FormatSettings benutze. Beispiel:
Delphi-Quellcode:
Warnhinweis:
function GetMonatText(aMonat:Integer; short:Bool=False):String;
begin if short then Result:=FormatSettings.ShortMonthNames[aMonat] else Result:=FormatSettings.LongMonthNames[aMonat]; end; [DCC Warnung] uDatumLight.pas(492): W1048 Unsichere Typumwandlung von 'string' nach 'TFormatSettings' Wenn ich folgendes mache, kommt keine Warnung!?
Delphi-Quellcode:
Das kann doch sicher nicht die Lösung des Problems sein.
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; Was läuft da schief? |
AW: Unsichere Typumwandlung bei TFormatSettings
Bist du sicher, dass der Warnhinweis bei diesem Code hier kommt? :shock:
Delphi-Quellcode:
Da wird doch nichts an FormatSettings zugewiesen, sondern nur gelesen... :gruebel:
function GetMonatText(aMonat:Integer; short:Bool=False):String;
begin if short then Result:=FormatSettings.ShortMonthNames[aMonat] else Result:=FormatSettings.LongMonthNames[aMonat]; end; |
AW: Unsichere Typumwandlung bei TFormatSettings
Zitat:
|
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.. |
AW: Unsichere Typumwandlung bei TFormatSettings
Zitat:
Und nein, ich erzeuge keine Extrainstanz von Formatsettings und auch keine Varable oder ähnliches. Warum sollte ich auch? |
AW: Unsichere Typumwandlung bei TFormatSettings
Poste mal dein Beispielprojekt, bitte.
|
AW: Unsichere Typumwandlung bei TFormatSettings
Zitat:
|
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. |
AW: Unsichere Typumwandlung bei TFormatSettings
Zitat:
|
AW: Unsichere Typumwandlung bei TFormatSettings
Hallo,
kann ich, bringt aber warscheinlich nichts. Hier mal einige Auszüge:
Delphi-Quellcode:
Das komische an der Sache ist, dass in einem anderen Projekt, dass auch auf (gemeinsame) Dateien dieses Projektes zugreift, die Warnung nicht erscheint.
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]); |
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:58 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