使用:德尔福 XE2
一个类有一个字段是另一个类。
是否可以在字段的过程中引用容器类?
Type TClassA = class
procedure ClassAMethod;
end;
Type TClassB = class
ClassA : TClassA;
end;
procedure TClassA.ClassAMethod;
begin
// is it possible to get a reference to the
// owning ClassB object here?
end;