博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取对象的 RTTI 属性与事件的函数
阅读量:6262 次
发布时间:2019-06-22

本文共 1220 字,大约阅读时间需要 4 分钟。

 uses TypInfo; {获取类的信息, 需要这个单元}

//获取对象的 RTTI 属性与事件的函数
function GetPropertyAndEventList(obj: TObject; pList,eList: TStringList): Boolean;
var
  ClassTypeInfo: PTypeInfo; {类的信息结构指针}
  ClassDataInfo: PTypeData; {类的数据结构指针}
  propertyList : PPropList; {TPropInfo 是属性的数据结构;
                             PPropList 是其指针;
                             TPropList 是属性结构指针的列表数组;
                             PPropList 是指向这个数组的指针}

  num : Integer;            {记录属性的总数}

  size: Integer;            {记录属性结构的大小}
  i: Integer;        
begin
  ClassTypeInfo := obj.ClassInfo;              {先获取: 类的信息结构指针}
  ClassDataInfo := GetTypeData(ClassTypeInfo); {再获取: 类的数据结构指针}
  num := ClassDataInfo.PropCount;              {属性总数}
  size := SizeOf(TPropInfo);                   {属性结构大小}

  GetMem(propertyList, size*num);              {给属性数组分配内存}

  GetPropInfos(ClassTypeInfo, propertyList);   {获取属性列表}

  for i := 0 to num - 1 do

  begin
    if propertyList[i].PropType^.Kind = tkMethod then {如果是事件; 事件也是属性吗, 给分出来}
      eList.Add(propertyList[i].Name)
    else
      pList.Add(propertyList[i].Name);
  end;

  pList.Sort; eList.Sort; {排序}

  FreeMem(propertyList); {释放属性数组的内存}

  Result := True;

end;

//测试
procedure TForm1.Button1Click(Sender: TObject);
var
  PL,EL: TStringList;
begin
  PL := TStringList.Create;
  EL := TStringList.Create;

  Memo1.Clear;

  Memo2.Clear;

  GetPropertyAndEventList(Self, PL, EL); {调用函数, 第一个参数是对象名}

  Memo1.Lines := PL;
  Memo2.Lines := EL;

  PL.Free;

  EL.Free;
end;

end.

转载地址:http://kqqsa.baihongyu.com/

你可能感兴趣的文章
MS CRM 2011 Form与Web Resource在JScript中的相互调用
查看>>
Oracle下定时删除归档日志脚本
查看>>
thinkphp-删除delete函数
查看>>
SQL Server dbcc inputbuffer
查看>>
eclipse导入svn项目,项目却没有svn的标记
查看>>
1、Cacti配置安装、监控Cisco交换机
查看>>
Windows Server 2012版本区别
查看>>
Linux系统安全加固基础
查看>>
vnx vmax分盘过程
查看>>
php断点续传之分割合并文件
查看>>
Lesson 5-Exchange server 2010 Transfer mails in public network
查看>>
Chrome源码剖析【三】
查看>>
windows系统自带命令查看硬件信息,怎样dos命令查看硬盘和内存/CPU信息
查看>>
Nginx基础应用--------基于CentOS6源码安装
查看>>
流媒体服务器之nginx的rtmp模块
查看>>
AChartEngine中属性XYMultipleSeriesRenderer和XYSeriesRender属性详解
查看>>
免费的上网行为管理系统和软路由系统推荐。
查看>>
dovecot+mysql
查看>>
c#短信接口代码实现(发短信)
查看>>
nginx hello world模块编译运行的问题
查看>>