我需要获取表单类型列表,但仅适用于从给定基本表单派生的类型。
我使用Delphi 2010和增强型RTTI来浏览类型
我目前的代码是:
rc := TRTTIContext.Create;
rtyps := rc.GetTypes;
for rtyp in rtyps do
begin
if not(rtyp.IsInstance) then Continue;
// Now I need to check if rtyp.AsInstance.MetaclassType is derived from TMyBaseForm
end;
我不想实例化对象并使用'is'运算符,因为它不会及时执行。
作为当前的解决方法,我测试是否在RTTI上下文中找到了TMyBaseForm中引入的方法:
if (rtyp.GetMethod('MyMethod') = nil) then Continue;
但这不是一个干净的解决方案,因为如果在另一个类分支中引入了具有相同名称的方法,它可能会导致问题。
所以,我的问题:是否有一种常规方法来检测类类型是否来自另一个类类型?
谢谢,
答案 0 :(得分:13)
当您致电AsInstance
返回TRttiInstanceType时,您必须从那里访问MetaclassType
属性,该属性是TClass对反射类型的引用,最后使用TClass你可以调用InheritsFrom
函数
for rtyp in rtyps do
if (rtyp.TypeKind=tkClass) and rtyp.IsInstance and rtyp.AsInstance.MetaclassType.InheritsFrom(TMyBaseForm) then
begin
// do something
end;