Delphi:如何使用RTTI知道哪个索引属性具有字符串索引

时间:2018-08-17 21:52:47

标签: delphi rtti

基于如下代码:

TListWrapper = class
  strict private
    FList: TStringList;
    function GetItem(index: Integer): TObject; overload;
    function GetItem(index: string): TObject; overload;
  public
    property Items[index: Integer]: TObject read GetItem; default;
    property Items[index: string]: TObject read GetItem; default;
end;

我想写一段代码,使用RTTI获取字符串索引属性的值。像这样:

var
  MyList: TListWrapper;
  InstanceType: TRttiInstanceType;
  IndexedProperty: TRttiIndexedProperty;

begin
  MyList:=TListWrapper.Create;

  LContext:=TRttiContext.Create;
  InstanceType:=LContext.GetType(MyList.ClassType) as TRttiInstanceType;
  for IndexedProperty in InstanceType.GetIndexedProperties do
    if IndexedProperty.Name.ToLower = 'items' then
    begin
      //There are two indexed properties with name 'items'
    end;
  LContext.Free;
  MyList.Free;
end;

问题::我怎么知道哪个索引属性具有字符串索引,以便我可以像这样获取值?

IndexedProperty.GetValue(MyList, ['some_string_index']);

注意:我正在使用Delphi 10.2.3(东京)

1 个答案:

答案 0 :(得分:4)

您应该能够使用read方法参数。像这样:

readingMethod := IndexedProperty.ReadMethod;
readMethodParameters := readingMethod.GetParameters;
if readMethodParameters[0].ParamType.TypeKind = tkUString then
  // We have the string version

显然,您应该检查是否已分配readMethod以及参数数量是否大于零,等等。

来自雷米(Remy):

在这种情况下,字符串类型为tkUString(UnicodeString),并且自Delphi 2009起就一直采用这种方式。