迭代成员变量

发布于 2024-10-08 04:56:30 字数 43 浏览 5 评论 0原文

有没有办法在 D2010 中迭代对象的成员变量而无需事先知道它们是什么?

Is there a way to iterate the member variables of an object in D2010 without knowing what they are beforehand?

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

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

发布评论

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

评论(1

拥醉 2024-10-15 04:56:30

是的,如果您使用的是 Delphi 2010 或更高版本。您可以使用扩展 RTTI 来获取有关对象的字段、方法和属性的信息。简单版本:

procedure GetInfo(obj: TObject);
var
  context: TRttiContext;
  rType: TRttiType;
  field: TRttiField;
  method: TRttiMethod;
  prop: TRttiProperty;
begin
  context := TRttiContext.Create;
  rType := context.GetType(obj.ClassType);
  for field in rType.GetFields do
    ;//do something here
  for method in rType.GetMethods do
    ;//do something here
  for prop in rType.GetProperties do
    ;//do something here
end;

必要的对象可以在RTTI单元中找到。

在 Delphi 的早期版本中,有一些更有限的 RTTI 可以为您提供有关某些属性和方法的一些信息,但它不能做那么多事情。

Yes, if you're using Delphi 2010 or later. You can use extended RTTI to get information about an object's fields, methods and properties. Simple version:

procedure GetInfo(obj: TObject);
var
  context: TRttiContext;
  rType: TRttiType;
  field: TRttiField;
  method: TRttiMethod;
  prop: TRttiProperty;
begin
  context := TRttiContext.Create;
  rType := context.GetType(obj.ClassType);
  for field in rType.GetFields do
    ;//do something here
  for method in rType.GetMethods do
    ;//do something here
  for prop in rType.GetProperties do
    ;//do something here
end;

The necessary objects can be found in the RTTI unit.

In earlier versions of Delphi, there's some more limited RTTI that can get you some information about some properties and methods, but it can't do all that much.

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