Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: Funktion über ihren Namen als String aufrufen
21. Mär 2013, 13:12
Weil es dadurch klarer wird
Delphi-Quellcode:
type
TMyClass = class
strict private
_Value : string;
private
FValue : string;
function GetValue : string;
public
function GetSomething( const AValue : string ) : string;
property Value : string read GetValue;
end;
function TMyClass.GetValue : string;
begin
Result := '_' + FValue + '_';
end;
function TMyClass.GetSomething( const AValue : string ) : string;
var
LValue : string;
begin
LValue := 'Something';
Result :=
LValue + // local variable
AValue + // attribute
_Value + // strict private class field
FValue + // private class field
Value; // property
end;
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)
|