Рассмотрим следующее:
TFieldType = class
fValue: string;
end;
TMainClass = class
private
Ffield: TFieldType;
public
function GetValue: string;
end;
В TMainClass.GetValue я пытаюсь получить значения полей TMainClass:
function TMainClass.GetValue;
begin
vCtx := TRTTIContext.Create;
vType := vCtx.GetType(Self.ClassInfo);
for vField in vType.GetFields do
vField.GetValue(
//Here's the trouble, because i don't know how to get the instance
);
Может быть, есть другие способы получения значений полей, которые являются экземплярами других классов?