在运行时获取delphi记录中字段的偏移量

前端之家收集整理的这篇文章主要介绍了在运行时获取delphi记录中字段的偏移量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给定记录类型:
TItem = record
   UPC : string[20];
   Price : Currency;
   Cost : Currency;
   ...
end;

并且字段的名称为字符串,如何在记录中获取该字段的偏移量?我需要在运行时执行此操作 – 要在运行时决定要访问的字段的名称.

例:

var
   pc : Integer;
   fieldName : string;
   value : Currency;
begin
   pc := Integer(@item);                    // item is defined and filled elsewhere
   fieldName := Text1.Text;                 // user might type 'Cost' or 'Price' etc
   Inc(pc,GetItemFieldOffset(fieldName));  // how do I implement GetItemFieldOffset?
   value := PCurrency(pc)^;
   ..

我正在使用Delphi 7.

解决方法

你不能. Delphi 7不会为记录发出RTTI.还有其他选项(如前面的答案所示),但那些需要手动映射“字段名称” – > “偏移”.
原文链接:https://www.f2er.com/delphi/101716.html

猜你在找的Delphi相关文章