如何在Delphi XE中通过名称获取类类型引用?
我实际上正在尝试使用 Rtti 来实现通用方法调用程序。它应该像这样工作:
- 我将提供类名、方法名和参数,
- 调用者将通过调用此类的指定方法来完成其工作
所以我需要类引用才能获取其 Rtti 信息并寻找我想调用的方法。
有没有办法在不实现我想要使用的类的类引用列表的情况下做到这一点?
I'm actually trying to use Rtti to implent a generic method invoker. It should work like this:
- I'll provide the class name, method name, and arguments
- the invoker will do its work by invoking the specified method of this class
So I need the class reference in order to get its Rtti information and seek for the method I want to invoke.
Is there any way to do that without implementing a class reference list of the classes I want to be working with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用他的名字获取类引用,您必须使用
TRttiContext.FindType
函数传递类的名称并使用AsInstance
属性,然后您可以调用该类的构造函数。To get the class reference using his name you must use the
TRttiContext.FindType
function passing the Name of the class and the retrieve the instance using theAsInstance
property and then you can call the constructor of the class.