有没有办法在Delphi 7中获取旧样式(Borland Pascal)对象实例的类名?

Use*_*007 5 delphi rtti

我班上有很多后代:

PMyAncestor =^TMyAncestor;
TMyAncestor = object
  public
    constructor init;
    destructor done; virtual;
    // There are virtual methods as well
end;

PMyDescendant1 =^TMyDescendant1;
TMyDescendant1 = object ( TMyAncestor )
end;

PMyDescendant2 =^TMyDescendant2;
TMyDescendant2 = object ( TMyAncestor )
end;

PMyDescendant3 =^TMyDescendant3;
TMyDescendant3 = object ( TMyDescendant2 )
end;

procedure foo;
var
  pMA1, pMA2, pMA3, pMA4 : PMyAncestor;
  s : string;
begin
  pMA1 := new( PMyAncestor, init );
  pMA2 := new( PMyDescendant1, init );
  pMA3 := new( PMyDescendant2, init );
  pMA4 := new( PMyDescendant3, init );
  try
    s := some_magic( pMA1 ); // s := "TMyAncestor"
    s := some_magic( pMA2 ); // s := "TMyDescendant1"
    s := some_magic( pMA3 ); // s := "TMyDescendant2"
    s := some_magic( pMA4 ); // s := "TMyDescendant3"
  finally
    dispose( pMA4, done );
    dispose( pMA3, done );
    dispose( pMA2, done );
    dispose( pMA1, done );
  end;
end;
Run Code Online (Sandbox Code Playgroud)

有没有办法获取其后代实例的类名?我不想因为这个原因创建一个虚方法(有成千上万的后代).我知道有typeOf(T)运营商.但它的返回类型是什么?好.指针.但是我能把它投射出去?演员PTypeInfo似乎是错的.

Dav*_*nan 5

当我编译此代码并在编译的可执行文件中搜索类的名称时,找不到它们.

由此我得出结论,你要做的事情是不可能的.

  • 在问题中很清楚,'TypeOf`的使用是未知的.OP要求一个魔术函数来显示对象类型.我会说'TypeOf`就是魔术函数,只是它返回一个定义类型的指针,而不是一个字符串.是否需要使用查找表,是实现细节,我们无法分辨. (2认同)