W
wyb_star
Unregistered / Unconfirmed
GUEST, unregistred user!
我定义一个如类
Taa = class(TComponent)
private
protected
public
procedure GetAddress;
published
end;
var
abc:Taa;
begin
abc := Taa.Create(nil);
//怎样在这里取得abc中过程GetAddress在内存中的地址
abc.Free;
end;
要取得对象的地址话就好办了,直接"@abc.对象名"就得了,
但我想在运行时取得abc中过程GetAddress在内存中的地址,我不知道该怎么做
Taa = class(TComponent)
private
protected
public
procedure GetAddress;
published
end;
var
abc:Taa;
begin
abc := Taa.Create(nil);
//怎样在这里取得abc中过程GetAddress在内存中的地址
abc.Free;
end;
要取得对象的地址话就好办了,直接"@abc.对象名"就得了,
但我想在运行时取得abc中过程GetAddress在内存中的地址,我不知道该怎么做