ei jo, vor allem weil Delphi bei der CodeCompletion für Variablen-Felder (bei Properties) in einer Klasse ein F (=Field) verwendet.
Ich versuche folgende Logik bei der Verwendung zu benutzen:
Delphi-Quellcode:
type
TFoo =
class
private
fMyValue :
string;
public
procedure FooMethod;
property MyValue :
string read fMyValue
write fMyValue;
end;
implementation
ressourcestring
sMyValue = '
MyValue';
const
cMyValue = '
MyValue';
var
gMyValue :
string;
// unit-global Variable
procedure TFoo.FooMethod;
var
lMyValue :
string;
// local Variable
begin
fMyValue := cMyValue;
lMyValue := cMyValue;
gMyValue := cMyValue;
end;
Aber als Präfix das t zu verwenden kam mir eigentlich noch niemals in den Sinn
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)