数组 – 如何获取const数组的类型和值?

前端之家收集整理的这篇文章主要介绍了数组 – 如何获取const数组的类型和值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的Delphi开发中,
我想将一个“const数组”(也可以包含类)传递给一个过程,并在过程循环中传递元素并检测元素的类型如下所示.
Procedure Test(const Args : array of const);
begin
end;

and in my code call it with some variables

Procedure Test();
begin
  cls := TMyObject.create;
  i := 123;
  j := 'book';
  l := False;
  Test([i,j,l,cls,37.8])
end;

如何循环发送的数组元素并检测它的类型?

解决方法

for I := Low(Args) to High(Args) do
  case TVarRec(Args[I]).VType of
    vtInteger:
      ...
  end;

猜你在找的Delphi相关文章