使用 RTTI 调用通用列表的方法

发布于 2024-12-04 06:35:21 字数 366 浏览 1 评论 0原文

我不知道该怎么做:

拥有这个对象:

TMyObject = class;

TMyList<T: TMyObject> = class(TList<T>)
public
     function Execute(aParam1, aParam2:string):boolean;
end;

TMyOtherObject = class(TMyObject)

TMyOtherList = class(TMyList<TMyOtherObject>);

如果我收到,如何通过 rtti 执行“执行”功能 函数参数中的 TMyOtherList 对象作为 TObject?

谢谢。

I don't know how to do this:

Having this objects:

TMyObject = class;

TMyList<T: TMyObject> = class(TList<T>)
public
     function Execute(aParam1, aParam2:string):boolean;
end;

TMyOtherObject = class(TMyObject)

TMyOtherList = class(TMyList<TMyOtherObject>);

How can I execute the "execute" function via rtti if I receive
a TMyOtherList object in a function param as an TObject?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀念你的温柔 2024-12-11 06:35:21

不要理会 RTTI,只需使用强制转换:

(aObject as TMyOtherList).Execute(param1, param2);

如果强制转换不是一个选项,则使用接口。

Don't bother with RTTI, just use a cast:

(aObject as TMyOtherList).Execute(param1, param2);

If casting is not an option then use an interface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文